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

Writes a 64-bit integer value into native heap.

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

Parameters

ptr
Address in native heap at which to write.
val
Value to be written.

See Also

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