Switch statement fallthrough in C#?

Open link in next tab

Switch statement fallthrough in C#?

https://stackoverflow.com/questions/174155/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...

Switch statement fallthrough in C#?