pedram
pedram

Reputation: 3767

How can I change character Case?

how can I change character case so result be like :

"hello" = "Hello"
"hello germany" = Hello Germany"

regards

Upvotes: 2

Views: 239

Answers (2)

Colin Cochrane
Colin Cochrane

Reputation: 2615

static void Main(string[] args)
{
    string myString = "hello, world!";
    Console.WriteLine(CultureInfo.CurrentCulture.TextInfo.ToTitleCase(myString));
    Console.Read();
}

Upvotes: 1

Related Questions