Imager.sPixel._GetGreen C# (CSharp) Method

_GetGreen() private static method

Gets the value for green, hopefully the compiler inlines that.
private static _GetGreen ( uint rgbBytes ) : byte
rgbBytes uint The pixel value.
return byte
        private static byte _GetGreen(uint rgbBytes)
        {
            return ((byte)(rgbBytes >> 8));
        }