Revision: 68867
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at March 9, 2015 21:59 by jessonapc
Initial Code
using System; using System.Globalization; public class SamplesTextInfo { public static void Main() { // Defines the string with mixed casing. string myString = "wAr aNd pEaCe"; // Creates a TextInfo based on the "en-US" culture. TextInfo myTI = new CultureInfo("en-US",false).TextInfo; // Changes a string to lowercase. Console.WriteLine( "\"{0}\" to lowercase: {1}", myString, myTI.ToLower( myString ) ); // Changes a string to uppercase. Console.WriteLine( "\"{0}\" to uppercase: {1}", myString, myTI.ToUpper( myString ) ); // Changes a string to titlecase. Console.WriteLine( "\"{0}\" to titlecase: {1}", myString, myTI.ToTitleCase( myString ) ); } } /* This code produces the following output. "wAr aNd pEaCe" to lowercase: war and peace "wAr aNd pEaCe" to uppercase: WAR AND PEACE "wAr aNd pEaCe" to titlecase: War And Peace */
Initial URL
https://msdn.microsoft.com/en-us/library/system.globalization.textinfo.totitlecase.aspx
Initial Description
From MSDN, changing case of a string to Upper, Lower or Title
Initial Title
Changing case of a string to Upper, Lower or Title
Initial Tags
Initial Language
C#