list class : RemoveFirst() method

Description

Removes the first element of the list.

Syntax

listInstance.RemoveFirst()

Arguments

None

Return value

ClassDescription
some classThe 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

Copyright © Rice All rights reserved.