I have tried a couple different ways and cannot seem to get the result I want using vb.net.
I have an array of strings. {\"55555 \",\"44444\", \" \"}
I need an
My $.02
Dim stringList() As String = New String() {"", "123", "456", "789", "a"} Dim intList() As Integer intList = (From str As String In stringList Where Integer.TryParse(str, Nothing) Select (Integer.Parse(str))).ToArray