Simple linq question

  • Thread starter Thread starter Sems
  • Start date Start date
S

Sems

Hi all

If I have a variable like this...

List<string> parsedData = new List<string>();

Why can I not call parsedData.Select and other linq methods on it?
 
If I have a variable like this...

List<string> parsedData = new List<string>();

Why can I not call parsedData.Select and other linq methods on it?

Are you on .NET 3.5 or 4.0?

Do you have:

using System.Linq;

?

Arne
 
Back
Top