There doesn\'t seem to be a way to use C#\'s ternary operator on two bytes like so:
byte someByte = someBoolean ? 0 : 1;
That code currentl
byte someByte = (byte)(someBoolean ? 0 : 1);