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)");
|
the string representation. |