hello....
i want to convert first letter of each word to capital n remaining all letter to lowercase..how should i code in c# to do so..
plz tell simple code..
Thanks
This way
string s = "This is sample text."; s = Thread.CurrentThread.CurrentCulture.TextInfo.ToTitleCase(s);
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.