Esempio n. 1
0
        public LinkedListNode(LinkedList owner, object value)
        {
            Owner = owner;
            Value = value;

            if ((owner != null) && (value != null))
                _children = new LinkedList(this, owner.Depth + 1);
        }
Esempio n. 2
0
 public PropertyTree(int baseDepth)
 {
     _PropertyTree = new LinkedList(null, baseDepth);
 }