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

Writes a 32-bit integer value into native heap.

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

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.WriteInt32 Overload List