RGBColor.RGB C# (CSharp) Method

RGB() public static method

public static RGB ( byte r, byte g, byte b ) : uint
r byte
g byte
b byte
return uint
	public static uint RGB(byte r, byte g, byte b)  
	{
		return (((r|((uint)g<<8))|(((uint)b)<<16)));
	}