System.Convert

Summary


Converts a base data type to another base data type.
Defined in Convert.js

Constructors

System.Convert()

Methods

  • static String FromBase64String(<String> s)
    Converts the specified String, which encodes binary data as base 64 digits, to an equivalent string value.

    Parameters

    • s - A String.

    Return Values

    A string equivalent to s.
  • static String ToBase64String(<String> value)
    Converts a String to its equivalent String representation encoded with base 64 digits.

    Parameters

    • value - A String.

    Return Values

    The String representation, in base 64, of the contents of the specified value.