Closed
Description
Can we add this to #1200
public Enum Parse(string? unitAbbreviation, Type unitType, IFormatProvider? formatProvider = null)
:unitAbbreviation
should be non-nullable..public bool TryParse<TUnitType>(string unitAbbreviation, out TUnitType unit) where TUnitType : struct, Enum
:unitAbbreviation
should be nullablepublic bool TryParse(string unitAbbreviation, Type unitType, [NotNullWhen(true)] out Enum? unit)
:unitAbbreviation
should be nullable