using if within if in C# code example
Example: if inside if c#
int Test1 = 1;
int Test2 = 1;
if (Test1 = 1)
{
if (Test2 = 1)
{
Console.WriteLine("This is the up Answer.");
}
Console.WriteLine("This is the down Answer.");
}
//END HERE
//THIS IS CODE FOR C#