unity string lowercase

Code Example - unity string lowercase

                
                        string s = "a StRiNg";

string sUppercase = s.ToUpper(); //"A STRING"
string sLowercase = s.ToLower(); //"a string"