MCP: Developing Microsoft SharePoint Server 2013 Advanced Solutions
MCTS: SharePoint 2010, Application Development
MCTS: Microsoft Windows SharePoint Services 3.0, Application Development
MCP 2.0 -- Certified Profession
If somebody like the post and its helpful in your work then, add comments.
Monday, January 5, 2009
To make First Character in String Capital
Use using System.Globalization namespace
and Add following code TextInfo userTextInfo = new CultureInfo("en-US", false).TextInfo; string capitalized = userTextInfo.ToTitleCase(stringYourString);
No comments:
Post a Comment