Triplet Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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)