-
Notifications
You must be signed in to change notification settings - Fork 400
Open
Description
I tried to convert by ByAbbreviation like this:
UnitConverter.TryConvertByAbbreviation(2.03801051E+11, "Volume", "m³", "hm³", out double inHm3);
or
UnitConverter.TryConvertByAbbreviation(2.03801051E+11, "Volume", "m³", "km³", out double inHm3);
But the result is always 0.
I think the problem is when trying to find "km³" from the list, it always finds 2 items on the list

I have tried on v5 and v6, and it's the same result.
Can you help me, what should I do?