Removes the first matching value from the array.

 

   

Syntax
 

[C#]
virtual bool Remove(T value)

 

   

Params
 
Name Description
value The value to remove.
return True if the value is removed, otherwise false.

 

   

Notes
 

Removes the first matching value from the array.

When an item is removed, the items that follow the removed item move up to occupy the vacated spot.

 

   

Example
 
None.