Interface IGetsRomanNumeralForNumber
An object which will get the roman numereral version of a specified non-zero, non-negative number. Roman numerals are generated and returned in uppercase, using the English/Latin alphabet (invariant culture).
Namespace: ZptSharp.Expressions
Assembly: ZptSharp.Abstractions.dll
Syntax
public interface IGetsRomanNumeralForNumber
Methods
| Improve this Doc View SourceGetRomanNumeral(Int32)
Gets the roman numeral for the specified number.
Declaration
string GetRomanNumeral(int number)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | number | Number. |
Returns
Type | Description |
---|---|
System.String | The roman numeral. |