string s = "h";
s = s.ToUpper();
returns "H".
string s = "8";
s = s.ToUpper();
returns "8"
Should this not return "*"?
returns
returns Should this not return |
|||||||||||||||||||||
|
|
No, it shouldn't. Of course, this is a gross over-simplification (being a number alone doesn't automatically make a certain character in a character set caseless), but it's likely what you're asking for anyway so I'll leave it at that. |
|||||||||||||||||||
|
|
Because there is no upper case Just because the specific keyboard you are using has a
|
|||||||||||||||
|
|
The real answer is because the TextInfo associated with the CultureInfo for en-US does not define "*" as the uppercase of "8". It may be possible to extend that TextInfo, override toUpper(), and have it work like you wish. |
|||
|
|
|
|||
|
|
|
Just because you press shift 8 to get a * doesnt make it an uppercase value, it only applies for a-z characters. |
|||||
|