UnmanagedMemoryAccessor.WriteArray<T> Method
Writes structures from an array of type T into the accessor.
Namespace: System.IO
Assembly: mscorlib (in mscorlib.dll)
public void WriteArray<T>( long position, T[] array, int offset, int count ) where T : struct
Type Parameters
- T
The type of structure.
Parameters
- position
- Type: System.Int64
The number of bytes into the accessor at which to begin writing.
- array
- Type: T[]
The array to write into the accessor.
- offset
- Type: System.Int32
The index in array to start writing from.
- count
- Type: System.Int32
The number of structures in array to write.
| Exception | Condition |
|---|---|
| ArgumentException | There are not enough bytes in the accessor after position to write the number of structures specified by count. |
| ArgumentOutOfRangeException | position is less than zero or greater than the capacity of the accessor. -or- offset or count is less than zero. |
| ArgumentNullException | array is null. |
| NotSupportedException | The accessor does not support writing. |
| ObjectDisposedException | The accessor has been disposed. |
- SecurityCriticalAttribute
requires full trust for the immediate caller. This member cannot be used by partially trusted or transparent code.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.