public static char ReadCharAt(
string name,
long offset
)
Public Shared Function ReadCharAt (
name As String,
offset As Long
) As Char
Dim name As String
Dim offset As Long
Dim returnValue As Char
returnValue = UtilSharedMemory.ReadCharAt(name,
offset)
public:
static wchar_t ReadCharAt(
String^ name,
long long offset
)
static member ReadCharAt :
name : string *
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.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 Char
Using mmf As MemoryMappedFile = SharedMemoryUtil.Create("My MemoryMappedFile Name", capacity:=4096)
SharedMemoryUtil.Write("My MemoryMappedFile Name", Encoding.Default.GetBytes(str))
result = SharedMemoryUtil.ReadCharAt("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.