public static char ReadCharAt(
MemoryMappedFile mmf,
long offset
)
Public Shared Function ReadCharAt (
mmf As MemoryMappedFile,
offset As Long
) As Char
Dim mmf As MemoryMappedFile
Dim offset As Long
Dim returnValue As Char
returnValue = UtilSharedMemory.ReadCharAt(mmf,
offset)
public:
static wchar_t ReadCharAt(
MemoryMappedFile^ mmf,
long long offset
)
static member ReadCharAt :
mmf : MemoryMappedFile *
offset : int64 -> char
No code example is currently available or this language may not be supported.
[Missing <param name="offset"/> documentation for "M:DevCase.Core.Diagnostics.Processes.UtilSharedMemory.ReadCharAt(System.IO.MemoryMappedFiles.MemoryMappedFile,System.Int64)"]
No code example is currently available or this language may not be supported.
Dim str As String = "Hello World!"
Dim result As Char
Using mmf As MemoryMappedFile = SharedMemoryUtil.Create("My MemoryMappedFile Name", capacity:=4096)
SharedMemoryUtil.Write(mmf, Encoding.Default.GetBytes(str))
result = SharedMemoryUtil.ReadCharAt(mmf, offset:=0)
End Using
MessageBox.Show(result)
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.