c sharp
How do I get the color from a hexadecimal color code using .NET?
A
Desh-Duniya Team
Author
string colorcode = "#FFFFFF00";
int argb = Int32.Parse(colorcode.Replace("#", ""), NumberStyles.HexNumber);
Color clr = Color.FromArgb(argb);