0
// Input string. string mixedCase = "This is a MIXED case string."; // Call ToLower instance method, which returns a new copy. string lower = mixedCase.ToLower(); // Display results. Console.WriteLine("{0}, {1}", mixedCase, lower); https://www.dotnetperls.com/tolower
27th Nov 2017, 5:22 PM
sneeze
sneeze - avatar