vote up 5 vote down star

I have the following C# code:

  byte rule = 0;
  ...
  rule = rule | 0x80;

which produces the error: Cannot implicitly convert type 'int' to 'byte'. An explicit conversion exists (are you missing a cast?)

[Update: first version of the question was wrong ... I misread the compiler output]

Adding the cast doesn't fix the problem:

  rule = rule | (byte) 0x80;

I need to write it as:

  rule |= 0x80;

Which just seems weird. Why is the |= operator any different to the | operator?

Is there any other way of telling the compiler to treat the constant as a byte?

flag

72% accept rate

11 Answers

vote up 4 vote down check
int rule = 0;
rule |= 0x80;

http://msdn.microsoft.com/en-us/library/kxszd0kx.aspx The | operator is defined for all value types. I think this will produced the intended result. The "|=" operator is an or then assign operator, which is simply shorthand for rule = rule | 0x80.

One of the niftier things about C# is that it lets you do crazy things like abuse value types simply based on their size. An 'int' is exactly the same as a byte, except the compiler will throw warnings if you try and use them as both at the same time. Simply sticking with one (in this case, int) works well. If you're concerned about 64bit readiness, you can specify int32, but all ints are int32s, even running in x64 mode.

link|flag
vote up 0 vote down

Does anybody know why Microsoft chose not to include suffixes for byte, sbyte, short, ushort and so on? It makes for really ugly and less-than-readable code.

Oh, and the problem with the operator always returning an int is not restricted to literals that are handled as ints. If you work with all shorts, the same problem occurs.

short a, b, c; a = b + c;

Same error, even though the result can't be anything but a short.

link|flag
vote up 0 vote down

Apparently the expression 'rule | 0x80' returns an int even if you define 0x80 as 'const byte 0x80'.

I think the rule is numbers like 0x80 defaults to int unless you include a literal suffix. So for the expression rule | 0x80, the result will be an int since 0x80 is an int and rule (which is a byte) can safely be converted to int.

link|flag
vote up 0 vote down

@ Giovanni Galbo : yes and no. The code is dealing with the programming of the flash memory in an external device, and logically represents a single byte of memory. I could cast it later, but this seemed more obvious. I guess my C heritage is showing through too much!

@ Jonathon Holland : the 'as' syntax looks neater but unfortunately doesn't appear to work ... it produces: The as operator must be used with a reference type or nullable type ('byte' is a non-nullable value type)

link|flag
vote up 7 vote down

This works:

rule = (byte)(rule | 0x80);

Apparently the expression 'rule | 0x80' returns an int even if you define 0x80 as 'const byte 0x80'.

link|flag
vote up 0 vote down

Unfortunately, your only recourse is to do it just the way you have. There is no suffix to mark the literal as a byte. The | operator does not provide for implicit conversion as an assignment (i.e. initialization) would.

link|flag
vote up 2 vote down

According to the ECMA Specification, pg 72 there is no byte literal. Only integer literals for the types: int, uint, long, and ulong.

link|flag
vote up 3 vote down

The term you are looking for is "Literal" and unfortunately C# does not have a byte literal.

All of the C# literals are listed here:

http://msdn.microsoft.com/en-us/library/aa664672(VS.71).aspx

link|flag
vote up 3 vote down

C# does not have a literal suffix for byte. u = uint, l = long, ul = ulong, f = float, m = decimal, but no byte. You have to cast it.

link|flag
How did that happen? – User Jun 21 at 17:51
vote up 0 vote down

I don't think so...

Does rule have to be a byte?

link|flag
vote up 1 vote down

Looks like you may just have to do it the ugly way: http://msdn.microsoft.com/en-us/library/5bdb6693.aspx.

link|flag

Your Answer

Get an OpenID
or

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