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