toUpperCase


Description:

public static string toUpperCase (string? s)

Convert the string to upper case.

Example:

    assert (Strings.toUpperCase ("hello") == "HELLO");

Parameters:

s

the string to convert.

Returns:

upper-cased string, or empty string if null.