139
can somebody confirm this pls?
(lemmy.nz)
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
What?
If I have a
case 42:in C#, I can issue agoto 42and resume execution after that case? Or how would that work?From what I know, labels are only an identifier followed by a colon, like:
Or just the label and colon on one line and statements following on subsequent lines. I've never seen a switch case expression being called a "label". Very new to me. Would love to see a minimal demonstration example. ๐
Edit: huh, I guess you can.
Yes, you would do
goto case 42;From MSDN: