Method AddNoResize
AddNoResize(void*)
Adds a pointer to the end of this list.
Declaration
public void AddNoResize(void* value)
Parameters
| Type | Name | Description |
|---|---|---|
| void* | value | The pointer to add to the end of the list. |
Remarks
Increments the length by 1. Never increases the capacity.
Exceptions
| Type | Condition |
|---|---|
| InvalidOperationException | Thrown if incrementing the length would exceed the capacity. |