Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


Add

Adds a pointer to the end of the list.
Read time 1 minuteLast updated 13 days ago

Definition

Add(IntPtr)

Adds a pointer to the end of the list.
public void Add(in nint value)

Parameters

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.
public void Add(void* value)

Parameters

value

The pointer to add to the end of this list.

Remarks

Increments the length by 1. Increases the capacity if necessary.