What's the difference between Char.IsDigit() and Char.IsNumber() in C#?
|
|
Some of the characters that are 'numeric' but not digits include 0x00b2 and 0x00b3 which are superscripted 2 and 3 ('²' and '³') and the glyphs that are fractions such as '¼', '½', and '¾'. Note that there are quite a few characters that This snippet of code tells you which code points differ:
|
|||
|
|
|
|
I found the answer:
|
|||
|
|
