Tripple<T1, T2, T3> Class
Public Class Tripple(Of _
T1, _
T2, _
T3)
This language is not supported or no code example is available.
public class Tripple<T1, T2, T3>
This language is not supported or no code example is available.
generic<typename T1, typename T2, typename T3>
public ref class Tripple
This language is not supported or no code example is available.
Type Parameters
- T1
The first object of the tripple.
- T2
The second object of the tripple.
- T3
The third object of the tripple.
Name | Description | |
---|---|---|
Tripple(T1, T2, T3) | Contructor. Creates a tripple that references three objects. |
Name | Description | |
---|---|---|
ToString() | String representation of the tripple. |
Name | Description | |
---|---|---|
Tripple.First | The first object of the tripple. | |
Tripple.Second | The second object of the tripple. | |
Tripple.Third | The third object of the tripple. |
IGS.Genamo.Tripple<T1, T2, T3>