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
Maybe something like this:
dim ls as new List(of string)() ls.Add("55555") ls.Add("44444") ls.Add(" ") Dim temp as integer Dim ls2 as List(Of integer)=ls.Where(function(x) integer.TryParse(x,temp)).Select(function(x) temp).ToList()