using System;
using System.Globalization;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
string s = "converts a STRING to title CASE IN c#";
TextInfo ti = new CultureInfo("en-US", false).TextInfo;
s = ti.ToTitleCase(s.ToLower()); // Converts A String To Title Case In C#
Console.WriteLine(s);
}
}
}
/*
run:
Converts A String To Title Case In C#
*/