Creates a new instance of TreeNode.
Namespace:
Gile.AutoCAD.Geometry
Assembly:
GeometryExtensions (in GeometryExtensions.dll) Version: 2.0.0.0 (2.0.0.0)
Syntaxpublic TreeNode(
T value,
int depth
)
Public Sub New (
value As T,
depth As Integer
)
public:
TreeNode(
T value,
int depth
)
new :
value : 'T *
depth : int -> TreeNode
Parameters
- value
- Type: T
Value of the node. - depth
- Type: SystemInt32
Depth of the node.
See Also