What I have is R:255 G:181 B:178, and I am working in C# (for WP8, to be more specific)
I would like to convert this to a hex number to use as a color (to set the pixel
Greetings fellow humans,
//Red Value int integerRedValue = 0; //Green Value int integerGreenValue = 0; //Blue Value int integerBlueValue = 0; string hexValue = integerRedValue.ToString("X2") + integerGreenValue.ToString("X2") + integerBlueValue.ToString("X2");