PixelFarm.Drawing.Color.ToABGR C# (CSharp) Method

ToABGR() public method

public ToABGR ( ) : uint
return uint
        public uint ToABGR()
        {
            return (uint)((this.a << 24) | (this.b << 16) | (this.g << 8) | this.r);
        }