Method Add
Add(in IntPtr)
Adds a pointer to the end of the list.
Declaration
public void Add(in IntPtr value)
Parameters
| Type | Name | Description |
|---|---|---|
| IntPtr | value | The pointer to add to the end of this list. |
Remarks
Increments the length by 1. Increases the capacity if necessary.
Add(void*)
Adds a pointer to the end of the list.
Declaration
public void Add(void* value)
Parameters
| Type | Name | Description |
|---|---|---|
| void* | value | The pointer to add to the end of this list. |
Remarks
Increments the length by 1. Increases the capacity if necessary.