I have come across the following code in C#.
if(condition0) statement0; else if(condition1) statement1; else if(condition2) statement2; else if(condition3) state
There is no "else if" statement in C#.
For that matter, I don't know that there are any multi-word statement keywords in C#.