I want to create a System.Drawing.Color from a value like #FF00FF or FF00FF without needing to write code for that. There is any .NET
System.Drawing.Color
#FF00FF
FF00FF
You can use the System.Drawing.ColorTranslator static method FromHtml.
use:
System.Drawing.ColorTranslator.FromHtml("#FFFFFF");