在 Java 中:
"A".compareTo("a"); return -32 //"A" is less than "a".
在 .Net 中,使用 String.CompareTo:
"A".CompareTo("a"); return 1 //"A" is greater than "a".
在 .Net 中,使用 Char.CompareTo:
'A'.CompareTo('a'); return -32 //"A" is less than "a".
我知道Java使用它在unicode表中的位置来比较字符串字符,但.Net不是。如何确定.Net中哪个大写字母大于小写字母?