at the moment I have a program, where it is possible that I call SelectElement() with an
invalid index.
At the moment I have to use
Code: Select all
if index < ListSize()
SelectElement(Test(), index)
More elegant would be, if I can check the result of SelectElement() like
Code: Select all
if SelectElement(Test(), index)
Bernd