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

RgbToColor() public static method

public static RgbToColor ( int color ) : Color
color int
return Color
        public static Color RgbToColor(int color)
        {
            return Color.FromArgb(color & 0x0000ff, (color & 0x00ff00) >> 8, (color & 0xff0000) >> 16);
        }