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