Tipic Instant Messaging Platform - Programmer's Reference Guide

GraphNode Constructor (Object, Object, Boolean)

Create a new node, with key and data, possibly having sorted children.

[Visual Basic]
Overloads Public Sub New( _
   ByVal key As Object, _
   ByVal data As Object, _
   ByVal sorted As Boolean _
)
[C#]
public GraphNode(
   object key,
   object data,
   bool sorted
);

Parameters

key
The key used to retrieve the data
data
The data in the node
sorted
Should the children be sorted?

See Also

GraphNode Class | bedrock.collections Namespace | GraphNode Constructor Overload List