Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

unity string lowercase

string s = "a StRiNg";

string sUppercase = s.ToUpper(); //"A STRING"
string sLowercase = s.ToLower(); //"a string"
 
PREVIOUS NEXT
Tagged: #unity #string #lowercase
ADD COMMENT
Topic
Name
2+1 =