How to convert character to lowercase in C#

1 Answer

0 votes
using System;

class Program
{
    static void Main() {
        char ch = 'A';
 
        ch = Char.ToLower(ch);

        Console.Write(ch);
    }
}




/*
run:

a

*/

 



answered Nov 16, 2019 by avibootz

Related questions

1 answer 122 views
1 answer 163 views
1 answer 144 views
1 answer 151 views
...