CopyTo<T> Method (DataPointer)
In This Topic
Reads the content of the unmanaged memory location of this instance to the specified buffer.
Syntax
'Declaration
Public Sub CopyTo(Of As {New, Struct})( _
ByVal () As , _
ByVal As System.Integer, _
ByVal As System.Integer _
)
public void CopyTo<>(
[] ,
System.int ,
System.int
)
where T: new(), struct
Parameters
- buffer
- The buffer.
- offset
- The offset in the array to write to.
- count
- The number of T element to read from the memory location.
Type Parameters
- T
- Type of a buffer element
Exceptions
Exception | Description |
System.ArgumentNullException | buffer |
System.InvalidOperationException | DataPointer is Zero |
System.ArgumentOutOfRangeException | buffer;Total buffer size cannot be larger than size of this data pointer |
See Also