list class : FindLast(class) method
Description
It stores the last child that matches as a value in the proxy and returns it.
Syntax
listInstance.FindLast(class searchInstance)
Arguments
Class | Name | Description |
class | searchInstance | An instance to search as value. |
Return value
Class | Description |
proxy | A proxy with child element that match as a value. |
Sample code
1: | list{string} stringList = new list{string}(); |
2: | stringList.Add("a"); |
3: | stringList.Add("b"); |
4: | stringList.Add("a"); |
5: | proxy resultProxy = stringList.FindLast("a"); // The result (resultProxy) has a last child of the list. |
Notes
This method returns a last child itself that match as value.
If there is no element that matches as a value, an empty proxy is returned.
The argument must be the int, long, real, string, or bool. It is meaningless in other types.
This method searches from end of the list.
Links for reference
None