I am writing conditional operator in place of if else . But i my case i have multiple statements as following
if (condition)
{
statement 1;
statement 2;
}
else
{
statement 3;
statement 4;
}
How could i write same using conditional operator ? and :