Answers for "c# if statement with 2 conditions"

C#
1

c# if statement with 2 conditions

if (checkbox.checked)
  {
    if (columnname != a && columnname != b && columnname != c)
    {
      "statement 1"
    }
  }
else
  {
    if (columnname != a && columnname != b && columnname != c 
        && columnname != A2)
    {
      "statement 1"
    }
  }
Posted by: Guest on August-15-2020

Code answers related to "c# if statement with 2 conditions"

C# Answers by Framework

Browse Popular Code Answers by Language