second


Description:

public B second ()

Returns the second value.

Example:

    var pair = new Pair<string,string> ("hello", "world");
assert (pair.second () == "world");

Returns:

the second value.