예제 #1
0
        public TestNode(TestNode parent, int index)
        {
            this.Parent = parent;
            this.Index  = index;

            Children = new TestNodeCollection(this);
        }
        public TestNode(TestNode?parent, int index)
        {
            Parent = parent;
            Index  = index;

            Children = new TestNodeCollection(this);
        }