Description:

Converts a double value to a string.

Syntax:
public static string ToString(
double value
)
Parameters:
Returns:
Type: string
Returns the double value as a settings file formatted string.
Available since:
6.10

Description:

Converts a key value string pair array to a properly formatted string dictionary XML string.

Syntax:
public static string ToString(
KeyValuePair<string, string>[] value
)
Parameters:
  • value
  • Type: KeyValuePair<string, string>[]
  • List of string pairs to turn into a dictionary XML string.
Returns:
Type: string
Returns a properly formatted XML string that represents the string dictionary.

Description:

Converts a string array to a properly formatted string list XML string.

Syntax:
public static string ToString(
string values
)
Parameters:
  • values
  • Type: string
  • List of strings to turn into a string list XML string.
Returns:
Type: string
Returns a properly formatted XML string that represents the list of strings.
Available since:
6.0

Nothing found