Triplet Constructors

Definition

Initializes a new instance of the Triplet class.

Overloads

Triplet()

Initializes a new instance of the Triplet class.

Triplet(Object, Object)

Initializes a new instance of the Triplet class and sets the first two objects.

Triplet(Object, Object, Object)

Initializes a new instance of the Triplet class with the provided three objects.

Triplet()

Initializes a new instance of the Triplet class.

public:
 Triplet();
public Triplet ();
Public Sub New ()

Applies to

Triplet(Object, Object)

Initializes a new instance of the Triplet class and sets the first two objects.

public:
 Triplet(System::Object ^ x, System::Object ^ y);
public Triplet (object x, object y);
new System.Web.UI.Triplet : obj * obj -> System.Web.UI.Triplet
Public Sub New (x As Object, y As Object)

Parameters

x
Object

Object assigned to First.

y
Object

Object assigned to Second.

Applies to

Triplet(Object, Object, Object)

Initializes a new instance of the Triplet class with the provided three objects.

public:
 Triplet(System::Object ^ x, System::Object ^ y, System::Object ^ z);
public Triplet (object x, object y, object z);
new System.Web.UI.Triplet : obj * obj * obj -> System.Web.UI.Triplet
Public Sub New (x As Object, y As Object, z As Object)

Parameters

x
Object

Object assigned to First.

y
Object

Object assigned to Second.

z
Object

Object assigned to Third.

Applies to