BitmapReader.Extensions.StringExtensions.ToColor C# (CSharp) Method

ToColor() public static method

public static ToColor ( this str ) : Color
str this
return Color
        public static Color ToColor(this string str)
        {
            try
            {
                return ColorTranslator.FromHtml(str);
            }
            catch (Exception)
            {
                return Color.Empty;
            }
        }