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

Writes a 32-bit integer value into native heap.

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

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