string class : ToLower() method
Description
Gets a new instance of the string that uppercase in the invoker string converts to lowercase.
Syntax
stringInstance.ToLower()
Arguments
None
Return value
Class | Description |
string | A new instance of the string that uppercase in the invoker string converts to lowercase. |
Sample code
//anyString is a instance of string type.
string lowerString = anyString.ToLower();
Notes
It's a wrapper of the System.String.ToLower().