RGBColor.B16 C# (CSharp) Method

B16() public static method

public static B16 ( uint colorref ) : ushort
colorref uint
return ushort
	public static ushort B16(uint colorref)
	{
		return (ushort)(((colorref >> 16) & 0xff)<<8);
	}

Same methods

RGBColor::B16 ( uint c0, uint c1 ) : ushort