Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am getting the error "Cannot implicitly convert type 'int' to 'byte'. An explicit conversion exists (are you missing a cast?)". Doesn't byte + byte = byte? Also I notice when I remove the +rgb.Green it works

// rgb.Red, rgb.Green, rgb.Blue are byte types
// h, delta are double
rgb.Red = Convert.ToByte(Math.Round((h - 4) * delta)) + rgb.Green;

public struct RGBColor
{
    public byte Red { get; set; }
    public byte Green { get; set; }
    public byte Blue { get; set; }
}
share|improve this question
What is rgb, i think it is object of Color class i.e. why it is not working.... – Javed Akram Nov 8 '10 at 12:31
@Javed Akram, rgb is a struct as shown in the update – Jiew Meng Nov 8 '10 at 12:59
ohh, OK the given answers by the Experts are up to the mark. – Javed Akram Nov 8 '10 at 13:04

4 Answers

up vote 6 down vote accepted

Doesn't byte + byte = byte?

Nope, because it may overflow (> 255), that's why this operation returns an Int32. You could cast the result back to byte at your own risk.

share|improve this answer
+1 for "at your own risk" – mskfisher Nov 8 '10 at 13:54

Adding two bytes produces an integer in C#. Convert the entire thing back to a byte.

rgb.Red = (byte)(Convert.ToByte(Math.Round((h - 4) * delta)) + rgb.Green);

See byte + byte = int... why? for more information.

share|improve this answer
+1: Interesting, I didn't know this one... granted, I can't think of any code I've written in C# that adds two bytes together. – Powerlord Nov 8 '10 at 16:14

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

byte + byte = int

More accurately framework doesn't define operator + on byte, but there is an implicit conversion from byte to int, to

byte + byte = int + int = int

I don't quite agree with the justification for this being that it may overflow, since so may int + int. But obviously byte arithmetic is far more 'dangerous' in this respect - and this behaviour forces you to take a close look at what you are doing.

share|improve this answer
+1 for referencing the documentation – Les Nov 8 '10 at 12:34

C# widens all operands to int before doing arithmetic on them. So you'll need to cast it back to byte explicitly.

http://msdn.microsoft.com/en-us/library/5bdb6693(VS.80).aspx

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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