Easily usable Enum, Newtonsoft.json. (include Description Converter)
public enum EnumType
{
[DescriptionAttribute("Desc0")]
EnumValue0,
[DescriptionAttribute("Desc1")]
EnumValue0,
}
enum.GetDescription()
or
enum.Desc()
https://github.com/elky84/EnumExtend/
https://www.nuget.org/packages/EnumExtend/
Not Nullable JsonEnumConverter and JsonEnumsConverter.
migrate .net standard 2.0 to .net standrad 2.1
change method name ToEnumString to FromString change method name ToEnumList to GetEnumList
move FromDescription to EnumUtil. (from JsonEnumConverter and JsonEnumsConverter)
added TypesUtil (similar EnumUtil)