Pair<T1, T2> Class
Public Class Pair(Of _
T1, _
T2)
This language is not supported or no code example is available.
public class Pair<T1, T2>
This language is not supported or no code example is available.
generic<typename T1, typename T2>
public ref class Pair
This language is not supported or no code example is available.
Type Parameters
- T1
The first object of the pair.
- T2
The second object of the pair.
Name | Description | |
---|---|---|
Pair() | ||
Pair(T1, T2) | Constructor. Creates a pair which references two objects. |
Name | Description | |
---|---|---|
Equals(object) | Determines whether the specified object is equal to the current object. | |
GetHashCode() | Serves as the default hash function. | |
ToString() | String representation of the pair. |
Name | Description | |
---|---|---|
Pair.First | The first object of the pair. | |
Pair.Second | The second object of the pair. |
IGS.Genamo.Pair<T1, T2>