Marshal.WriteInt64 Method (Object, Int32, Int64)
Assembly: mscorlib (in mscorlib.dll)
public static void WriteInt64 ( [InAttribute] [OutAttribute] Object ptr, int ofs, long val )
public static void WriteInt64 ( /** @attribute InAttribute() */ /** @attribute OutAttribute() */ Object ptr, int ofs, long val )
public static function WriteInt64 ( ptr : Object, ofs : int, val : long )
Parameters
- ptr
The base address in unmanaged memory of the target object.
- ofs
An additional byte offset, added to the ptr parameter before writing.
- val
The value to write.
| Exception type | Condition |
|---|---|
| ptr is not a recognized format. -or- ptr is a null reference (Nothing in Visual Basic). -or- ptr is invalid. | |
| ptr is an ArrayWithOffset object. This method does not accept ArrayWithOffset parameters. |
WriteInt64 enables direct interaction with an unmanaged 64-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.
Note |
|---|
| This method uses SecurityAction.LinkDemand to prevent it from being called from untrusted code; only the immediate caller is required to have SecurityPermissionAttribute.UnmanagedCode permission. If your code can be called from partially trusted code, do not pass user input to Marshal class methods without validation. For important limitations on using the LinkDemand member, see Demand vs. LinkDemand. |
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Note