unity string lowercase code example
Example: unity string lowercase
string s = "a StRiNg";
string sUppercase = s.ToUpper(); //"A STRING"
string sLowercase = s.ToLower(); //"a string"
string s = "a StRiNg";
string sUppercase = s.ToUpper(); //"A STRING"
string sLowercase = s.ToLower(); //"a string"