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

1 Answer

0 votes
using System;

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



/*
run:

Csharp

*/

 



answered May 15, 2019 by avibootz

Related questions

1 answer 197 views
1 answer 162 views
1 answer 176 views
...