A data stream wrapper for a file on the host system, such as a disk image.
Наследование: IDataStream
Пример #1
0
		public void Close() {
			if (fileStream != null) {
				fileStream.Close();
				fileStream = null;
			}
		}
Пример #2
0
		public void Open() {
			if (fileStream == null) {
				fileStream = new FileDataStream(Path, null);
				fileStream.Open();
			}
		}