I would like to know if there is a method already part of the .Net Framework for instantiating a Color value from a string containing an RGB triplet such as the following:
"166, 103, 208"
If a Color is stored in my application's app.config, it's stored as a string. I'd like to know how .Net deserializes such string values back into Colors, if possible.