tags:

views:

74

answers:

2

I moved my project from my computer to athor computer and when I opened it, I facing this problem with LINQ:

http://www.rofof.com/img2/6bvnql3.gif

pleas how can I solve it ?

+5  A: 

Sounds like you're missing

Import System.Linq

or a reference to System.Core.dll. I can't see why that would have happened just from moving to a different computer though...

Jon Skeet
yes, that's it ! thanks Jon!
Imports System.Linq
+1  A: 

You mentioned that you're on another computer--does that computer have .NET 3.0+ installed on it? If not, then you won't be able to address System.Linq until it's installed.

Eric
thank you .