Application type is Windows Forms Application but I'm using it as a helper project in a solution so it doesn't actually have any forms in the project.
Option Infer is on. Using .net 3.5
I tried referencing System.Core, System.Data, System.Data.Linq but none worked.
Dim lis As New List(Of String)
lis.Add("orange")
lis.Where(Function(x) x = "apple").ToList()
Getting compile error:
'Where' is not a member of 'System.Collections.Generic.List(Of String)'
I've been searching for a while now. It works fine in the parent project but not in the helper project. What do I need to do to get 'Where' working on my list?