|
Although you can use the String class to convert a string to uppercase or lowercase, you must use a method in the System.Globalization.TextInfo class to convert a string to title case
|
|
System.Globalization.TextInfo info = new System.Globalization.CultureInfo("en-US", false).TextInfo; // First letter of every word is capitalized.
|
|
The members of System.Globalization.TextInfo are listed below. See Also: Inherited members from System.Object [ ...
|
|
Mono Class Library : System.Globalization Namespace System.Globalization.TextInfo Class: Documentation for this section has not yet been entered. See Also: ...
|
|
Gets or sets the string that separates items in a list. ... Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter ...
|
|
Converts the specified string to titlecase. ... Generally, title casing converts the first character of a word to uppercase and the rest of the characters to lowercase.
|