C# Else if Statement

Using the C# Else if statements, we can increase the execution speed over simple if statements. That means when we use Else if control flow statements, the compiler will check all the comparisons in the sequence only until the given condition satisfy. Once the condition is satisfied, rather than going for the next comparison, it … Read more