Beispiel #1
0
        public SolutionFolder(ISolutionFolder parent, IFolderPath path, IFolderProperties properties)
            : base(parent, path, properties)
        {
            if (parent == null)
            {
                return;
            }

            _Children = new SolutionTreeNodeCollection(this, parent.NodeComparer);
        }
Beispiel #2
0
 public SolutionFolder(IFolderPath path, IFolderProperties properties, IComparer <ITreeNodePath> nodeComparer)
     : base(null, path, properties)
 {
     _Children = new SolutionTreeNodeCollection(this, nodeComparer);
 }