예제 #1
0
 public ZipVirtualDirectory(ZipVirtualPathProvider owningProvider, ZipEntry entry, ZipVirtualDirectory parentDir)
     : base(owningProvider, parentDir)
 {
     Provider = owningProvider;
     Entry = entry;
 }
예제 #2
0
 public ZipVirtualFile(ZipVirtualPathProvider owningProvider, ZipEntry entry, ZipVirtualDirectory directory)
     : base(owningProvider, directory)
 {
     this.Provider = owningProvider;
     this.Entry = entry;
 }