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

Writes a single byte value into native heap.

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

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