RGBColor.B C# (CSharp) Метод

B() публичный статический Метод

public static B ( uint colorref ) : byte
colorref uint
Результат byte
	public static byte B(uint colorref)
	{
		return (byte)((colorref >> 16) & 0xff);
	}