Removes an Element from the array.

 

   

Syntax
 

[C#]
virtual bool Remove(T value)

 

   

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

 

   

Notes
 

Removes an Element from the array.

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

 

   

Example
 
None.