public static byte ReadAt(
string name,
long offset
)
Public Shared Function ReadAt (
name As String,
offset As Long
) As Byte
Dim name As String
Dim offset As Long
Dim returnValue As Byte
returnValue = UtilSharedMemory.ReadAt(name, offset)
public:
static unsigned char ReadAt(
String^ name,
long long offset
)
static member ReadAt :
name : string *
offset : int64 -> byte
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.ReadAt(System.String,System.Int64)"]
No code example is currently available or this language may not be supported.
Dim str As String = "Hello World!"
Dim result As String
Using mmf As MemoryMappedFile = SharedMemoryUtil.Create("My MemoryMappedFile Name", capacity:=4096)
SharedMemoryUtil.Write("My MemoryMappedFile Name", Encoding.Default.GetBytes(str))
result = Convert.ToChar(SharedMemoryUtil.ReadAt("My MemoryMappedFile Name", 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.