Method AddArray
AddArray<T>(void*, int)
Appends the elements of a buffer to the end of this append buffer.
Declaration
public void AddArray<T>(void* ptr, int length) where T : unmanaged
Parameters
Type | Name | Description |
---|---|---|
void* | ptr | A pointer to the buffer whose values will be appended. |
int | length | The number of elements to append. |
Type Parameters
Name | Description |
---|---|
T | The type of the buffer's elements. |
Remarks
The values themselves are stored, not their pointers.