gandalf_der_13te@feddit.org to Programmer Humor@programming.dev · 5 days agocan somebody confirm this pls?feddit.orgimagemessage-square21linkfedilinkarrow-up1145arrow-down11
arrow-up1144arrow-down1imagecan somebody confirm this pls?feddit.orggandalf_der_13te@feddit.org to Programmer Humor@programming.dev · 5 days agomessage-square21linkfedilink
minus-squareTwilightKiddy@scribe.disroot.orglinkfedilinkEnglisharrow-up3·3 days agoYes, you would do goto case 42; From MSDN: private static decimal CalculatePrice(CoffeeChoice choice) { decimal price = 0; switch (choice) { case CoffeeChoice.Plain: price += 10.0m; break; case CoffeeChoice.WithMilk: price += 5.0m; goto case CoffeeChoice.Plain; case CoffeeChoice.WithIceCream: price += 7.0m; goto case CoffeeChoice.Plain; } return price; }
Yes, you would do
goto case 42;From MSDN:
private static decimal CalculatePrice(CoffeeChoice choice) { decimal price = 0; switch (choice) { case CoffeeChoice.Plain: price += 10.0m; break; case CoffeeChoice.WithMilk: price += 5.0m; goto case CoffeeChoice.Plain; case CoffeeChoice.WithIceCream: price += 7.0m; goto case CoffeeChoice.Plain; } return price; }