toString


Description:

public string toString ()

Returns a string representation of the Triple.

The format is (first, second, third).

Example:

    var t = new Triple<string,string,string> ("a", "b", "c");
assert (t.toString () == "(a, b, c)");

Returns:

the string representation.