ARCed.Scintilla.Utilities.ColorToRgb C# (CSharp) 메소드

ColorToRgb() 공개 정적인 메소드

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