Method AddNoResize
AddNoResize(T)
Appends an element to the end of this list.
Declaration
public void AddNoResize(T value)
Parameters
| Type | Name | Description |
|---|---|---|
| T | value | The value to add to the end of this list. |
Remarks
Length is incremented by 1. Will not increase the capacity.
Exceptions
| Type | Condition |
|---|---|
| InvalidOperationException | Thrown if incrementing the length would exceed the capacity. |