Provides methods for converting strings of roman numerals to and from integers.
public static class RomanNumerals
| name | description |
|---|---|
| static MaxValue { get; } | Gets the maximum value that can be represented as a roman numeral by this class. |
| static MinValue { get; } | Gets the minimum value that can be represented as a roman numeral by this class. |
| static GetFormatProvider(…) | Returns a format provider that renders integers as roman numerals. |
| static ToInteger(…) | Converts the specified roman numeral letter to an integer. (2 methods) |
| static ToLowerCaseString(…) | Converts the specified integer to a lower case roman numeral string. |
| static ToUpperCaseString(…) | Converts the specified integer to an upper case roman numeral string. |