C# Convert Hex To Color
Below you have an extension method that can help you convert any hex color code to a Color object. The method above can only convert 8 characters ARGB color codes.In order to convert simple RGB codes too we will check for the length of the string (9 = ARGB and 7 = RGB) and in…