Template:Csharp string functions

esse quam videri
Revision as of 14:58, 23 September 2010 by Jeff (talk | contribs) (String Functions in csharp)
Jump to: navigation, search

String Functions in csharp

To Upper method returns a string that only has upper case letters <csharp> string strName = string.ToUpper("jeff"); </csharp>

strName will be "JEFF"

<csharp> string.ToLower(); </csharp>

string.Replace();

etc