我有以下的代碼工作:如果條件在csharp中,最好的方法是什麼?
if (user.ReAccess == 1 || user.CetAccess == 1)
{
}
else
{
//Do Something
}
但是,理想情況下,我想這樣做(如果不是)。但是這有語法錯誤。
if !(user.ReAccess == 1 || user.CetAccess == 1)
{
//Do Something
}
您可以使其工作,只需添加一些括號 – harold