list class : End getter
Description
Gets the last element of the list.
Syntax
listInstance.End
Arguments
None
Return value
Class | Description |
someClass | Element to be got. |
Sample code
1: | list{string} stringList = new list{string}(); |
2: | stringList.Add("a"); |
3: | stringList.Add("b"); |
4: | string resultString = stringList.End; // The result (resultString) is "b". |
Notes
We recommend using LastChild getter.