RGBColor.G C# (CSharp) Method

G() public static method

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