commonui\System\Drawing\Color.cs (4)
1545return new Color((long)argb & 0xffffffff, StateARGBValueValid, null, (KnownColor)0);
1560return new Color(MakeArgb((byte) alpha, (byte) red, (byte) green, (byte) blue), StateARGBValueValid, null, (KnownColor)0);
1573return new Color(MakeArgb(unchecked((byte) alpha), baseColor.R, baseColor.G, baseColor.B), StateARGBValueValid, null, (KnownColor)0);
1613return new Color(NotDefinedValue, StateNameValid, name, (KnownColor)0);