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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top