I would like to return two values in a foreach
, can you help me?
For Each item In Funcao()
teste1 = gostaria de pegar aqui o resultado 1
teste2 = gostaria de pegar aqui o resultado 2
Next
Private Function Funcao() As String
Dim resultado1 As String
Dim resultado2 As String
resultado1 = "Teste"
resultado2 = "Teste2"
Return resultado1
End Function