Beispiel #1
0
 public FileResource(FileResourcePool pool, IResource?parent, FilePath path)
 {
     Path      = path;
     Parent    = parent;
     this.pool = pool;
 }
Beispiel #2
0
 public DirectoryResource(FileResourcePool pool, IResource?parent, string pathText) : this(pool, parent, new FilePath(pathText))
 {
 }