NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Marshal.ReadInt64 (Object, Int32)

Reads a 64-bit integer from native heap.

[Visual Basic]
Overloads extern Public Shared Function ReadInt64( _
   ByVal ptr As Object, _
   ByVal ofs As Integer _
) As Long
[C#]
public static extern long ReadInt64(
   in object ptr,
   int ofs
);
[C++]
public: static extern __int64 ReadInt64(
   __in Object* ptr,
   int ofs
);
[JScript]
public static extern function ReadInt64(
   in ptr : Object,
   ofs : int
) : long;

Parameters

ptr
Base address in native heap of source object.
ofs
Additional byte offset, added to ptr before reading.

See Also

Marshal Class | Marshal Members | System.Runtime.InteropServices Namespace | Marshal.ReadInt64 Overload List