Guest User

Untitled

a guest
Dec 6th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
  2. Dim A(3) As String
  3. A(0) = "Hola"
  4. A(1) = "Como"
  5. A(2) = ""
  6. A(3) = "Estas"
  7. Dim Prueba() As String
  8. Prueba = (From str As String In A Where Not {""}.Contains(str)).ToArray()
  9. For Each element As String In Prueba
  10. MsgBox(element)
  11. Next
  12. End Sub
Add Comment
Please, Sign In to add comment