GenericPair<TValue1,TValue2> 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
建構新的 GenericPair<TValue1,TValue2> 物件。
多載
備註
如需詳細資訊,請參閱 pair::p air (STL/CLR) 。
GenericPair<TValue1,TValue2>()
以 GenericPair<TValue1,TValue2> 和 first 的預設值建構新的 second 物件。
public:
GenericPair();
public GenericPair ();
Public Sub New ()
備註
如需詳細資訊,請參閱 pair::p air (STL/CLR) 。
適用於
GenericPair<TValue1,TValue2>(GenericPair<TValue1,TValue2>)
從現有的 GenericPair<TValue1,TValue2> 物件建構新的 GenericPair<TValue1,TValue2> 物件。
public:
GenericPair(Microsoft::VisualC::StlClr::GenericPair<TValue1, TValue2> ^ _Right);
public GenericPair (Microsoft.VisualC.StlClr.GenericPair<TValue1,TValue2> _Right);
new Microsoft.VisualC.StlClr.GenericPair<'TValue1, 'TValue2> : Microsoft.VisualC.StlClr.GenericPair<'TValue1, 'TValue2> -> Microsoft.VisualC.StlClr.GenericPair<'TValue1, 'TValue2>
Public Sub New (_Right As GenericPair(Of TValue1, TValue2))
參數
- _Right
- GenericPair<TValue1,TValue2>
要複製到新的 GenericPair<TValue1,TValue2> 物件中的 GenericPair<TValue1,TValue2> 物件。
適用於
GenericPair<TValue1,TValue2>(KeyValuePair<TValue1,TValue2>)
從現有的 GenericPair<TValue1,TValue2> 物件建構新的 KeyValuePair<TKey,TValue> 物件。
public:
GenericPair(System::Collections::Generic::KeyValuePair<TValue1, TValue2> % _Right);
public GenericPair (ref System.Collections.Generic.KeyValuePair<TValue1,TValue2> _Right);
new Microsoft.VisualC.StlClr.GenericPair<'TValue1, 'TValue2> : KeyValuePair -> Microsoft.VisualC.StlClr.GenericPair<'TValue1, 'TValue2>
Public Sub New (ByRef _Right As KeyValuePair(Of TValue1, TValue2))
參數
- _Right
- KeyValuePair<TValue1,TValue2>
要複製到新的 KeyValuePair<TKey,TValue> 物件中的 GenericPair<TValue1,TValue2> 物件。
備註
如需詳細資訊,請參閱 pair::p air (STL/CLR) 。
適用於
GenericPair<TValue1,TValue2>(TValue1)
建構新的 GenericPair<TValue1,TValue2> 物件,並將第一個值指派給指定的值。
public:
GenericPair(TValue1 _Val1);
public GenericPair (TValue1 _Val1);
new Microsoft.VisualC.StlClr.GenericPair<'TValue1, 'TValue2> : 'TValue1 -> Microsoft.VisualC.StlClr.GenericPair<'TValue1, 'TValue2>
Public Sub New (_Val1 As TValue1)
參數
備註
如需詳細資訊,請參閱 pair::p air (STL/CLR) 。
適用於
GenericPair<TValue1,TValue2>(TValue1, TValue2)
以兩個指定的值建構新的 GenericPair<TValue1,TValue2> 物件。
public:
GenericPair(TValue1 _Val1, TValue2 _Val2);
public GenericPair (TValue1 _Val1, TValue2 _Val2);
new Microsoft.VisualC.StlClr.GenericPair<'TValue1, 'TValue2> : 'TValue1 * 'TValue2 -> Microsoft.VisualC.StlClr.GenericPair<'TValue1, 'TValue2>
Public Sub New (_Val1 As TValue1, _Val2 As TValue2)
參數
- _Val1
- TValue1
要儲存在 first 中的值。
- _Val2
- TValue2
要儲存在 second 中的值。
備註
如需詳細資訊,請參閱 pair::p air (STL/CLR) 。