Loading User Information from Channel 9
Something went wrong getting user information from Channel 9
Loading User Information from MSDN
Something went wrong getting user information from MSDN
Loading Visual Studio Achievements
Something went wrong getting the Visual Studio Achievements
The if Decision Statement - Day 1 - Part 11
Jan 17, 2011 at 5:34 AM@Awake: If you do not include the else, then each of the if statements will be evaluated.
If you do include the else, then if one of the if statements evaluates to true then the following else if statements do not need to be evaluated and the code will continue running after the block of else if statements (meaning less processing needs to occur).
Hope that makes sense.