csharp if 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");
}