How to make first letter of a string lowercase in C#

1 Answer

0 votes
using System;

class Program
{
    public static string lowercase_first_char(string s) {
        if (String.IsNullOrEmpty(s))
            return null;
        return char.ToLower(s[0]) + s.Substring(1);
    }
    static void Main()
    {
        Console.WriteLine(lowercase_first_char("CSharp"));
    }
}



/*
run:

cSharp

*/

 



answered May 15, 2019 by avibootz
...