diff --git a/X10D/src/StringExtensions.cs b/X10D/src/StringExtensions.cs index 9b1c1fd..0cc0dea 100644 --- a/X10D/src/StringExtensions.cs +++ b/X10D/src/StringExtensions.cs @@ -71,6 +71,8 @@ /// The type of the . /// The value to parse. /// The value corresponding to the . + /// Credit for this method goes to Scott Dorman: + /// (http://geekswithblogs.net/sdorman/Default.aspx) public static T EnumParse(this string value) { return value.EnumParse(false); @@ -83,6 +85,8 @@ /// The value to parse. /// Whether or not to ignore casing. /// The value corresponding to the . + /// Credit for this method goes to Scott Dorman: + /// (http://geekswithblogs.net/sdorman/Default.aspx) public static T EnumParse(this string value, bool ignoreCase) { if (value is null)