Convert a number to its Roman Numeral representation.
Any number outside the range 1 to 3999 will result in a null/blank string.
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public static string ToRoman(
int n
)
Public Shared Function ToRoman (
n As Integer
) As String
Parameters
- n
- Type: SystemInt32
The number to convert.
Return Value
Type:
StringThe roman numeral representation of the number, else null/blank if number is outside supported range.
See Also