Been googling for an hour and can't seem to find the answer. The following will remove "stupid" and prints out "hello world"
Dim arr As Variant: arr = Array("hello", "stupid", "world")
Dim newArr As Variant: newArr = Filter(arr, "stupid", False)
Debug.Print Join(newArr, " ")
What is the VB.Net equivalent for Filter? Any help would be greatly appreciated! Edit: (I'm looking for a 2.0 NET Framework solution)