Returns a copy of the string converted to lower case. The conversion is done using the invariant culture. Search Microsoft's documentation for "CultureInfo.InvariantCulture".
string ToLower(string text)
text |
The string to convert to lower case. |
Example
ToLower("Abcdefg")
Returns "abcdefg".