vote up 4 vote down star

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?

flag

I like the answers, but is casting the number to a byte the same as declaring the number as a byte? – Robert Sep 30 '08 at 14:30

6 Answers

vote up 3 vote down check

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:

byte b = (byte) 0x10;
link|flag
vote up 3 vote down
byte b = (byte) 123;

even though

byte b = 123;

does the same thing. If you have a variable:

int a = 42;
byte b = (byte) a;
link|flag
vote up 2 vote down

Remember, if you do:

byte b = (byte)300;

it's not going to work the way you expect.

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

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:

object someValue = (byte) 123;
link|flag
vote up 0 vote down

See also the question: C# numeric constants

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.