
Signature
God bless you for the help
use the following method
public static string PropCase(string strText)
{
return new
CultureInfo("en").TextInfo.ToTitleCase(strText.ToLower());
}
And dont post twice any question....

Signature
Every thing is perfect, as long as you share!!!
Don''t forget to rate the post
> Given any string variable in C#, how to convert the result into Initial
> Capitals?
>
> Ex: Given, "how are you?" to be converted as "How Are You?"
Timoti - 11 May 2007 18:34 GMT
Thanks for the reply, unfortunately, i couldn't see the post, hence is the
second time.
Will take care from the next time

Signature
God bless you for the help
> use the following method
>
[quoted text clipped - 10 lines]
> >
> > Ex: Given, "how are you?" to be converted as "How Are You?"