public TreeNode[] GetAllChildren() { TreeNodeCollection result = new TreeNodeCollection(); result.AddRange(m_dirCol); result.AddRange(m_fileCol); return(result.ToArray()); }
public TreeNode[] GetAllChildren() { TreeNodeCollection result = new TreeNodeCollection(); result.AddRange(Directories); result.AddRange(Files); return(result.ToArray()); }
public TreeNode[] GetFiles() { return(m_fileCol.ToArray()); }
public TreeNode[] GetDirectories() { return(m_dirCol.ToArray()); }
public TreeNode[] GetAllChildren() { TreeNodeCollection result = new TreeNodeCollection(); result.AddRange( m_dirCol ); result.AddRange( m_fileCol ); return result.ToArray(); }