What is the best way to turn strings like "red", "green", "yellow", "aliceblue", etc... into the actual System.Drawing.Color value?
I was looking at reflection and something about that didn't seem right.
|
|
|
|
|
|
|
You can use Color.FromName() |
||
|
|
|
|
public static Color FromName(string name) Color c = Color.FromName("AliceBlue") |
||
|
|
|
|
System.Drawing.Color.FromName("Red"); |
||||
|
|
|
EDIT: Turns out there's a good reason...Colors aren't an Enum... Why not use Enum.Parse? |
||||||||
|