System.ComponentModel.NullableConverter
namespace System.ComponentModel
{
public class NullableConverter : TypeConverter
{
public Type NullableType { get; }
public Type UnderlyingType { get; }
public TypeConverter UnderlyingTypeConverter { get; }
public NullableConverter(Type type);
}
}