MoreInternals.Model.HexSextupleColorValue.HexSextupleColorValue C# (CSharp) Method

HexSextupleColorValue() private method

private HexSextupleColorValue ( byte r, byte g, byte b ) : System
r byte
g byte
b byte
return System
        internal HexSextupleColorValue(byte r, byte g, byte b)
        {
            Red = r;
            Green = g;
            Blue = b;
        }