if using ? : in c# code example
Example 1: else if c#
if (statment) {
}
else if (statment) {
}
Example 2: different types of if statements in c#
//Default If condition
if (comEnvList.Items.Count > 0)
{
comEnvList.SelectedIndex = 1;
}
else
{
comEnvList.SelectedIndex = 0;
}
//IIf statement
comEnvList.SelectedIndex = comEnvList.Items.Count > 0 ? 1 : 0;