GenericPair<TValue1,TValue2> Konstruktory
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Vytvoří nový GenericPair<TValue1,TValue2> objekt.
Přetížení
GenericPair<TValue1,TValue2>() |
Vytvoří nový GenericPair<TValue1,TValue2> objekt s výchozími hodnotami pro first a second. |
GenericPair<TValue1,TValue2>(GenericPair<TValue1,TValue2>) |
Vytvoří nový GenericPair<TValue1,TValue2> objekt z existujícího GenericPair<TValue1,TValue2> objektu. |
GenericPair<TValue1,TValue2>(KeyValuePair<TValue1,TValue2>) |
Vytvoří nový GenericPair<TValue1,TValue2> objekt z existujícího KeyValuePair<TKey,TValue> objektu. |
GenericPair<TValue1,TValue2>(TValue1) |
Vytvoří nový GenericPair<TValue1,TValue2> objekt a přiřadí jeho první hodnotu zadané hodnotě. |
GenericPair<TValue1,TValue2>(TValue1, TValue2) |
Vytvoří nový GenericPair<TValue1,TValue2> objekt se dvěma zadanými hodnotami. |
Poznámky
Další informace najdete v tématu pair::p air (STL/CLR).
GenericPair<TValue1,TValue2>()
Vytvoří nový GenericPair<TValue1,TValue2> objekt s výchozími hodnotami pro first a second.
public:
GenericPair();
public GenericPair ();
Public Sub New ()
Poznámky
Další informace najdete v tématu pair::p air (STL/CLR).
Platí pro
GenericPair<TValue1,TValue2>(GenericPair<TValue1,TValue2>)
Vytvoří nový GenericPair<TValue1,TValue2> objekt z existujícího GenericPair<TValue1,TValue2> objektu.
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))
Parametry
- _Right
- GenericPair<TValue1,TValue2>
Objekt GenericPair<TValue1,TValue2> , který se má zkopírovat do nového GenericPair<TValue1,TValue2> objektu.
Platí pro
GenericPair<TValue1,TValue2>(KeyValuePair<TValue1,TValue2>)
Vytvoří nový GenericPair<TValue1,TValue2> objekt z existujícího KeyValuePair<TKey,TValue> objektu.
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))
Parametry
- _Right
- KeyValuePair<TValue1,TValue2>
Objekt KeyValuePair<TKey,TValue> , který se má zkopírovat do nového GenericPair<TValue1,TValue2> objektu.
Poznámky
Další informace najdete v tématu pair::p air (STL/CLR).
Platí pro
GenericPair<TValue1,TValue2>(TValue1)
Vytvoří nový GenericPair<TValue1,TValue2> objekt a přiřadí jeho první hodnotu zadané hodnotě.
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)
Parametry
- _Val1
- TValue1
Hodnota, která se má uložit do first. Této second hodnotě je přiřazena výchozí hodnota pro její typ.
Poznámky
Další informace najdete v tématu pair::p air (STL/CLR).
Platí pro
GenericPair<TValue1,TValue2>(TValue1, TValue2)
Vytvoří nový GenericPair<TValue1,TValue2> objekt se dvěma zadanými hodnotami.
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)
Parametry
- _Val1
- TValue1
Hodnota, která se má uložit do first.
- _Val2
- TValue2
Hodnota, která se má uložit do second.
Poznámky
Další informace najdete v tématu pair::p air (STL/CLR).