C#: string.ToUpper() and char.ToUpper()
In C# there is a
"mystring".ToUpper()
but nothing in the char class. Instead use
char.ToUpper('x')
… or write an extension method.
In C# there is a
"mystring".ToUpper()
but nothing in the char class. Instead use
char.ToUpper('x')
… or write an extension method.