Imager.sPixel._GetAlpha C# (CSharp) Метод

_GetAlpha() приватный статический Метод

Gets the value for alpha, hopefully the compiler inlines that.
private static _GetAlpha ( uint rgbBytes ) : byte
rgbBytes uint The pixel value.
Результат byte
        private static byte _GetAlpha(uint rgbBytes)
        {
            return ((byte)(rgbBytes >> 24));
        }