G
Guest
When I use the following C# code:
string [] colorNames = Enum.GetNames(typeof(KnownColor));
colorNames does not contain the full list of member names detailed in the
System.Drawing.KnownColor enumeration, but just a subset. Why is this?
Paul.
string [] colorNames = Enum.GetNames(typeof(KnownColor));
colorNames does not contain the full list of member names detailed in the
System.Drawing.KnownColor enumeration, but just a subset. Why is this?
Paul.