list class : RemoveFirst() method
Description
Removes the first element of the list.
Syntax
listInstance.RemoveFirst()
Arguments
None
Return value
Class | Description |
some class | The element that was removed. |
Sample code
//anyList is a instance of list{string} type.
string removed = anyList.RemoveFirst();
Notes
This method is added in Ver 1.1.0.0.
Links for reference
None