In C and C++ you can tell the compiler that a number is a 'long' by putting an 'l' at the end of the number. e.g long x = 0l;
How can I tell the C# compiler that a number is a byte?
|
|
|||
|
|
|
According to the C# language specification there is no way to specify a byte literal. You'll have to cast down to byte in order to get a byte. Your best bet is probably to specify in hex and cast down, like this:
|
||
|
|
|
|
even though
does the same thing. If you have a variable:
|
||
|
|
|
|
Remember, if you do:
it's not going to work the way you expect. |
||
|
|
|
|
MSDN uses implicit conversion. I don't see a byte type suffix, but you might use an explicit cast. I'd just use a 2-digit hexadecimal integer (int) constant. |
||
|
|
|
|
No need to tell the compiler. You can assign any valid value to the byte variable and the compiler is just fine with it: there's no suffix for byte. If you want to store a byte in an object you have to cast:
|
||
|
|
|
|
See also the question: C# numeric constants |
||
|
|