P
Patrick Blackman
How do you write regular numbers eg 1 23 475896 in roman numerals inC#
How do you write regular numbers eg 1 23 475896 in roman
numerals inC#
Simon Trew said:I have got a class that does this conversion (and the reverse conversion)
which I've posted it here before. http://tinyurl.com/gys3 (link to Google
Groups) should find you the thread. (I'm guessing any assignment date has
passed now.)
But it is worth pointing out that you can't really convert numbers >= 10,000
into Roman notation. You'd need to use the "bar" notation (a bar above a
numeral multiplies its values by 1000) but that cannot be readily encoded
into a string. (I guess there might be a combining character somewhere in
the Unicode that would serve this purpose, but it might not have a glyph in
many fonts.)
S.
Patrick Blackman said:Thanks, this is not for a homework assignment, it was actual for a page
numbering sequence an application I am doing... Again thanks.....