public static void Main()
bool checkedState = true;
string checkedStateStr = checkedState?"-1":"0";
Console.WriteLine(checkedStateStr);
string strInit = checkedState?"Some string here; Condition is true":"Some other string; condition is false";
Console.WriteLine(strInit);