Ejemplo n.º 1
0
        public TestNode(TestNode parent, int index)
        {
            this.Parent = parent;
            this.Index  = index;

            Children = new TestNodeCollection(this);
        }
Ejemplo n.º 2
0
        public TestNode(TestNode?parent, int index)
        {
            Parent = parent;
            Index  = index;

            Children = new TestNodeCollection(this);
        }