Sintaxis:
FOR EACH Variable IN Expresión
...
NEXT
Expresión : debe de ser un objeto enumerable
Ejemplo:
Con una matriz de cadenas:
Dim
Dict As
New
String[]
Dim
Elemento As
String
Dict.add("Azul")
Dict.add("Rojo")
Dict.add("Verde")
For
Each
Elemento In Dict
Print
Elemento
Next
Para más información: http://gambaswiki.org/wiki/lang/foreach
Descarga del ejemplo: Enlace
No hay comentarios:
Publicar un comentario