Switch statement fallthrough in C#?
Switch statement fallthrough in C#?
stackoverflow.com
Switch statement fallthrough in C#?
Switch statement fallthrough is one of my personal major reasons for loving switch vs. if/else if constructs. An example is in order here: static string NumberToWords(int number) { string[] nu......