UtilSharedMemoryWrite(MemoryMappedFile, Byte) Method
Writes a byte sequence at the start position of an existing MemoryMappedFile.
Namespace: DevCase.Core.Diagnostics.ProcessesAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static void Write(
MemoryMappedFile mmf,
byte[] data
)
Public Shared Sub Write (
mmf As MemoryMappedFile,
data As Byte()
)
Dim mmf As MemoryMappedFile
Dim data As Byte()
UtilSharedMemory.Write(mmf, data)
public:
static void Write(
MemoryMappedFile^ mmf,
array<unsigned char>^ data
)
static member Write :
mmf : MemoryMappedFile *
data : byte[] -> unit
No code example is currently available or this language may not be supported.
Parameters
- mmf MemoryMappedFile
-
The MemoryMappedFile segment.
- data Byte
-
The byte sequence to write in the MemoryMappedFile segment.
This is a code example.
No code example is currently available or this language may not be supported.
Using mmf As MemoryMappedFile = SharedMemoryUtil.Create("My MemoryMappedFile Name", capacity:=4096)
SharedMemoryUtil.Write(mmf, Encoding.Default.GetBytes("Hello World!"))
End Using
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.