About use the "ForEach" of list class, I solved...
invoke myList::ForEach(delegate using x as type String
invoke type Console::WriteLine(x)
end-delegate).
but, it's possible to use the Linq to objects method ?
Something like this ??????:
set minhaNovaLista to minhaLista::Where(delegate using x as type String returning y as type String
if(x::Length > 1)
move x to y
end-if
end-delegate).