and in if statement c# code example
Example 1: c# if statement
using System;
namespace DecisionMaking
{
class Program
{
static void Main(string[] args)
{
int a = 10;
if (a < 20)
{
Console.WriteLine("a is less than " + a);
}
Console.ReadLine();
}
}
}
Example 2: c# if
int x;
int y;
if ( x == y)
{
Console.WriteLine("x and y is equal");
}
else
{
Console.WriteLine("x and y is not equal");
}
Console.WriteLine($"x and y {(x == y? "is equal" : "is not equal")}");
Example 3: if statement c#
if (condition)
{
print("Yes");
}
else
{
print("No");
}
Example 4: 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"
}
}