Imager.sPixel._GetBlue C# (CSharp) Method

_GetBlue() private static method

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