System.ComponentModel.EnumConverter
namespace System.ComponentModel
{
public class EnumConverter : TypeConverter
{
protected virtual IComparer Comparer { get; }
protected Type EnumType { get; }
protected StandardValuesCollection Values { get; set; }
public EnumConverter(Type type);
}
}