C#C
C#3y ago
Victor H

❔ Switch-case on byte as characters like in C

Hi can I switch case on bytes using character syntax without having to cast to byte? Just wondering if I can make it look nicer without having to write 32 for space for example and not having to cast.

byte c;
switch (c) {

  // I preferably don't want to have to do either of these
  case (byte) ' ':
  case (byte) 32:

  // Preferably:
  case ' ':
}
Was this page helpful?