Node<TKey,TValue> Constructor
See Also 
SourceCode.Serialization Namespace > Node<TKey,TValue> Class : Node<TKey,TValue> Constructor



parent
key

Glossary Item Box

Syntax

Visual Basic (Declaration)  
Public Function New( _
   ByVal parent As Node(Of TKey,TValue), _
   ByVal key As TKey _
)
Visual Basic (Usage) Copy Code
Dim parent As Node(Of TKey,TValue)
Dim key As TKey
 
Dim instance As New Node(Of TKey,TValue)(parent, key)
C#  
public Node<TKey,TValue>( 
   Node<TKey,TValue> parent,
   TKey key
)
C++/CLI  
public:
Node<TKey,TValue>( 
   Node<TKey^,TValue^>^ parent,
   TKey^ key
)

Parameters

parent
key

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also