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 ' ':
}
byte c;
switch (c) {
// I preferably don't want to have to do either of these