ReadAndPosition<T> Method
In This Topic
Reads the specified T data from a memory location.
Syntax
'Declaration
Public Shared Function ReadAndPosition(Of As {New, Struct})( _
ByVal As System.IntPtr, _
ByRef As _
) As System.IntPtr
public static System.IntPtr ReadAndPosition<>(
System.IntPtr ,
ref
)
where T: new(), struct
Parameters
- source
- Memory location to read from.
- data
- The data write to.
Type Parameters
- T
- Type of a data to read.
Return Value
source pointer + sizeof(T).
See Also