How to convert a string to lower case (all lower) in C#

1 Answer

0 votes
using System;

namespace ConsoleApplication2
{
    class Program
    {
        static void Main(string[] args)
        {
           string s = "C# PROGRAMMING";
            
           Console.WriteLine(s.ToLower());
        }
    }
}

/*
  
c# programming
  
*/



answered Oct 26, 2014 by avibootz

Related questions

1 answer 131 views
131 views asked Dec 30, 2016 by avibootz
1 answer 179 views
179 views asked Dec 31, 2016 by avibootz
1 answer 263 views
1 answer 360 views
2 answers 350 views
1 answer 154 views
...