| MemoryMappedFile |
Though this class is not part of .NET it is included to allow for easy access to mapping a file into memory.
A new MemoryMappedFile can be created using the NewMemoryMappedFile function.
Dim map As MemoryMappedFile
Set map = NewMemoryMappedFile("MyFile.txt")
See Also
Project VBCorLib Overview | Constructors
| IObject |
| Name | Description |
|---|---|
BaseAddress (get) | Returns the base address for the mapped view. |
FileName (get) | Returns the filename of the currently mapped file. |
IsOpen (get) | Returns value indicating if the mapped file is open. |
IsReadOnly (get) | Returns if the mapped file is read-only. |
| Name | Description |
|---|---|
CloseFile | Closes the currently mapped file. |
CreateView | Returns a Byte array view of the mapped file. |
DeleteView | Unhooks a byte array view from the mapped file view. |
Equals | Returns a boolean indicating if the value and this object instance are the same instance. |
GetHashCode | Returns a pseudo-unique number identifying this instance. |
ToString | Returns a string representation of this object instance. |