C# program to convert the strings to lowercase.
using System; public class Program { public static void Main() { string str; Console.WriteLine("Enter the String :"); str = Console.ReadLine(); Console.WriteLine("String in LowerCase : {0}", str.ToLower()); } }
Enter the String : CodeCRY String in LowerCase : codecry
ToLower()
function converts the string to lowercase from uppercase.
Comments :