Пример #1
0
 public FileBrowser(string path) : base()
 {
     file_path     = path;
     files         = new List <Item>();
     ip            = new ItemProvider();
     ctags_matches = new Dictionary <string, List <List <string> > >();
     files         = ip.GetItems(file_path);
 }
Пример #2
0
 public FileBrowser()
 {
     files         = new List <Item>();
     ip            = new ItemProvider();
     ctags_matches = new Dictionary <string, List <List <string> > >();
 }