示例#1
0
 private FastMemoryMappedFile(FastMemoryMappedFile other)
 {
     this.mf   = other.mf;
     this.Size = other.Size;
     this.ptr  = other.Data;
 }
示例#2
0
 public FastMView(FastMemoryMappedFile mf)
 {
     this.mf       = mf;
     this.Position = 0;
 }