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