c to lowercase char code example
Example 1: c# string to lowercase
string author = "Mahesh Chand";
string bio = "Mahesh Chand is a founder of C# Corner.";
string ucaseAuthor = author.ToUpper();
Console.WriteLine($"Uppercase: {ucaseAuthor}");
string lcaseAuthor = author.ToLower();
Console.WriteLine($"Lowercase: {lcaseAuthor}");
Console.WriteLine(bio.ToLower());
Console.WriteLine(bio.ToUpper());
Example 2: how to change char to string
from character to string:
char c = 'a';
String s = Character.toString(c);