C# Program to Convert Upper case to Lower Case
Posted by Superadmin on August 15 2022 11:30:34

C# Program to Convert Upper case to Lower Case

 

This is a C# Program to convert upper case to lower case.

Problem Description

This C# Program Converts Upper Case to Lower Case.

Problem Solution

Here the String is obtained in uppercase which is converted to lowercase using tolower().

Program/Source Code

Here is source code of the C# Program to Convert Upper case to Lower Case. The C# program is successfully compiled and executed with Microsoft Visual Studio. The program output is also shown below.

/*
 * 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();
    }
}
Program Explanation

In this C# program, we are reading the string in uppercase using ‘str’ variable. Here the string is obtained in uppercase which is converted to lowercase using tolower(). Print the lower case value of the string.

 
Runtime Test Cases
 
Enter the String in Uppercase : SANFOUNDRY
String in Lowercase :sanfoundry