ARCed.Scintilla.Utilities.ColorToRgb C# (CSharp) Method

ColorToRgb() public static method

public static ColorToRgb ( Color c ) : int
c Color
return int
        public static int ColorToRgb(Color c)
        {
            return c.R + (c.G << 8) + (c.B << 16);
        }