コード例 #1
0
 public FileTree(string path)
 {
     Root    = new FileTreeItem(path);
     Current = Root;
 }
コード例 #2
0
 public FileTree()
 {
     Root    = new FileTreeItem(".\\");
     Current = Root;
 }