Friday, April 19, 2024 16:29

Posts Tagged ‘lowercase’

UPPERCASE and lowercase

Friday, April 21st, 2017

There are times when we need to convert the letters of a string to either uppercase or lowercase. Fortunately, C# offers us two methods for this: ToUpper() and ToLower().  As imagined, the first one will convert all letters of a string into capital letters, while the latter will do the opposite, by converting them to small ones.… Read more


Follow the white rabbit