#1,004 – Converting a String to Uppercase or Lowercase

You can use the ToLower and ToUpper methods of the string type to convert a particular string to all lowercase or all uppercase.  In either case, a new string is returned.

            string peye = "Guy Noir";

            string peyeLower = peye.ToLower();
            string peyeUpper = peye.ToUpper();

            Console.WriteLine(peye);
            Console.WriteLine(peyeLower);
            Console.WriteLine(peyeUpper);

1004-001

Advertisement

About Sean
Software developer in the Twin Cities area, passionate about software development and sailing.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: