In VB.NET there is such a construction:
Case Keys.Control Or Keys.D1, Keys.Control Or Keys.NumPad1 Ie, separated by commas, you can list 2 cases.
Is there anything like this in C #?
Or something like this in C # is written like this:
case Keys.Control | Keys.D1: case Keys.Control | Keys.NumPad1: { break; } ?