How can I add a range to my case statement.
0 to 200
Thanks,
Printable View
How can I add a range to my case statement.
0 to 200
Thanks,
Try this
Case x >= 0 && x <= 200:
I'm not sure if that'll work, but you can try.
If C# stays with its ancestor here then it won't work. Use series of if...else if...
yes, i dont think that's gonna work