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.WriteInt64 (Object, Int32, Int64)

Writes a 64-bit integer value into native heap.

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

Parameters

ptr
Base address in native heap of target object.
ofs
Additional byte offset, added to ptr before writing.
val
Value to be written.

See Also

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