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]
[MessagePackObject(false)]
public class TreeDataContainer<T>
Type Parameters
Name | Description |
---|---|
T | The concrete data type stored in this container. |
Properties
| Improve this Doc View SourceCount
This data transfer container, encapsulates the K2DTree<T> with all of its features
including the tree structure itself in form of NodeDataContainer<T>.
Declaration
[Key(2)]
public int Count { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Dimensions
This data transfer container, encapsulates the K2DTree<T> with all of its features
including the tree structure itself in form of NodeDataContainer<T>.
Declaration
[Key(1)]
public int Dimensions { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Leaves
This data transfer container, encapsulates the K2DTree<T> with all of its features
including the tree structure itself in form of NodeDataContainer<T>.
Declaration
[Key(0)]
public int Leaves { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Nodes
This data transfer container, encapsulates the K2DTree<T> with all of its features
including the tree structure itself in form of NodeDataContainer<T>.
Declaration
[Key(3)]
public IEnumerable<NodeDataContainer<T>> Nodes { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<NodeDataContainer<T>> |