Class TreeDataContainer<T>
This data transfer container, encapsulates the K2DTree<T> with all of its features
including the tree structure itself in form of NodeDataContainer<T>.
Inheritance
System.Object
TreeDataContainer<T>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Mars.Common.Collections
Assembly: Mars.Common.dll
Syntax
[Serializable]
public class TreeDataContainer<T>
Type Parameters
Name | Description |
---|---|
T | The concrete data type stored in this container. |
Properties
Count
Declaration
public int Count { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Dimensions
Declaration
public int Dimensions { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Leaves
Declaration
public int Leaves { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Nodes
Declaration
public IEnumerable<NodeDataContainer<T>> Nodes { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<NodeDataContainer<T>> |