ValueTuple<T1,T2,T3>(T1, T2, T3) Constructor
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 ValueTuple<T1,T2,T3> instance.
public:
ValueTuple(T1 item1, T2 item2, T3 item3);
public ValueTuple (T1 item1, T2 item2, T3 item3);
new ValueTuple<'T1, 'T2, 'T3> : 'T1 * 'T2 * 'T3 -> ValueTuple<'T1, 'T2, 'T3>
Public Sub New (item1 As T1, item2 As T2, item3 As T3)
Parameters
- item1
- T1
The value tuple's first element.
- item2
- T2
The value tuple's second element.
- item3
- T3
The value tuple's third element.
Applies to
Colaborați cu noi pe GitHub
Sursa pentru acest conținut poate fi găsită pe GitHub, unde puteți, de asemenea, să creați și să consultați probleme și solicitări de tragere. Pentru mai multe informații, consultați ghidul nostru pentru colaboratori.