상속: IFile
예제 #1
0
 public void Open(bool readOnly)
 {
     lock (objectLock) {
         file       = new LocalFile(FilePath, readOnly);
         IsOpen     = true;
         IsReadOnly = readOnly;
     }
 }
예제 #2
0
 public void Open(bool readOnly)
 {
     lock (objectLock) {
         file = new LocalFile(FilePath, readOnly);
         IsOpen = true;
         IsReadOnly = readOnly;
     }
 }