using System;
bool isComplete = true;
if (isComplete) // whatever is evaluated in the patenthesis if is true.
{
Console.WriteLine("The statement was true.");
}
else
Console.WriteLine("The statement was false."); // otherwise do this.
Console.WriteLine("End of Program.");