Marshal.WriteInt16 Method (Object, Int32, Char)
Writes a 16-bit signed integer value to unmanaged memory at a specified offset.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- ptr
- Type: System.Object
The base address in unmanaged memory of the target object.
- ofs
- Type: System.Int32
An additional byte offset, which is added to the ptr parameter before writing.
- val
- Type: System.Char
The value to write.
| Exception | Condition |
|---|---|
| AccessViolationException | Base address (ptr) plus offset byte (ofs) produces a null or invalid address. |
| ArgumentException | ptr is an ArrayWithOffset object. This method does not accept ArrayWithOffset parameters. |
WriteInt16 enables direct interaction with an unmanaged 16-bit signed array, eliminating the expense of copying an entire unmanaged array (using Marshal.Copy) to a separate managed array before setting its element values.
Writing to unaligned memory locations is supported.
- SecurityCriticalAttribute
requires full trust for the immediate caller. This member cannot be used by partially trusted or transparent code.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.