RGBColor.B C# (CSharp) Method

B() public static method

public static B ( uint colorref ) : byte
colorref uint
return byte
	public static byte B(uint colorref)
	{
		return (byte)((colorref >> 16) & 0xff);
	}