provide a static Parse(string) method to play well with autoparse (StringExtensions.Parse)

This commit is contained in:
Michael Becker 2020-10-15 00:14:26 -04:00
parent a8bf093b92
commit 031f268cca
No known key found for this signature in database
GPG Key ID: 506F54899E2BFED7

View File

@ -68,6 +68,10 @@ namespace MBS.Framework.Drawing
return color; return color;
} }
public static Color Parse(string value)
{
return Color.FromString(value);
}
public static Color FromString(string value) public static Color FromString(string value)
{ {
/* /*