Suggest a change
Success!
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
Close
Submission failed
For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
Close
Declaration
public void AddRange(void* ptr,
int length);
Parameters
| Parameter |
Description |
| ptr |
A buffer. |
| length |
The number of elements from the buffer to append. |
Description
Appends elements from a buffer to the end of this list. Increments the length by the number of appended elements.
The same as FixedList512Bytes<T0>.AddRangeNoResize. Included only for consistency with the other list types.
If the elements exceeds the capacity, throws cref="IndexOutOfRangeException", and the list is unchanged.
Declaration
public void AddRange(ReadOnlySpan<T> roSpan);
Parameters
| Parameter |
Description |
| roSpan |
ReadOnlySpan to copy from. |
Description
Copies elements from a ReadOnlySpan to the end of this list.