예제 #1
0
 internal Folder(FolderTable table, int index)
 {
     this._table = table;
     this._index = index;
 }
예제 #2
0
 public override void GetOrBuildTables()
 {
     File       = GetOrBuild(nameof(File), () => new FileTable(this));
     Folder     = GetOrBuild(nameof(Folder), () => new FolderTable(this));
     FileSystem = GetOrBuild(nameof(FileSystem), () => new FileSystemTable(this));
 }
예제 #3
0
 internal Folder(FolderTable table) : this(table, table.Add()._index)
 {
     Init();
 }
예제 #4
0
 void IRow.Remap(ITable table, int index)
 {
     _table = (FolderTable)table;
     _index = index;
 }