You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
435 B
C#

/*
* C# Program to Convert Upper case to Lower Case
*/
using System;
public class Program
{
public static void Main()
{
string str;
Console.WriteLine("Enter the String in Uppercase :");
str = Console.ReadLine();
Console.WriteLine("String in LowerCase : {0}", str.ToLower());
Console.ReadLine();
}
}
/*
Enter the String in Uppercase : ASDF
String in Lowercase :asdf