Skip to content

Commit

Permalink
Removed the commented Enums static class
Browse files Browse the repository at this point in the history
- Enums no longer needed.
  • Loading branch information
paulushub committed Jan 16, 2024
1 parent 3d558d3 commit e9702fa
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions Source/DataTypes/EnumConverters.cs
Original file line number Diff line number Diff line change
Expand Up @@ -219,22 +219,4 @@ public sealed class SvgMorphologyOperatorConverter : EnumBaseConverter<SvgMorpho
public sealed class SvgStitchTypeConverter : EnumBaseConverter<SvgStitchType> { }

public sealed class SvgTurbulenceTypeConverter : EnumBaseConverter<SvgTurbulenceType> { }

//public static class Enums
//{
// [CLSCompliant(false)]
// public static bool TryParse<TEnum>(string value, out TEnum result) where TEnum : struct, IConvertible
// {
// try
// {
// result = (TEnum)Enum.Parse(typeof(TEnum), value, true);
// return true;
// }
// catch
// {
// result = default(TEnum);
// return false;
// }
// }
//}
}

0 comments on commit e9702fa

Please sign in to comment.