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