0

I am using Visual studio 2005. Why is this line not supported?

using System.Linq;     

Error:

Error 1 Validation (XHTML 1.0 Transitional): Attribute values must be enclosed in quotation marks.

Error 2 The type or namespace name 'Linq' does not exist in the namespace 'System' (are you missing an assembly reference?)

Community
  • 1
  • 1
BAP
  • 27
  • 2
  • 11
  • possible duplicate of [Linq on visual studio 2005](http://stackoverflow.com/questions/9825613/linq-on-visual-studio-2005) – Tim Schmelter Apr 22 '14 at 14:11

1 Answers1

4

LINQ is not supported until .NET Framework v3.5, and visual studio 2005 supports .net v2.0 at max.

There are some workaround to use LINQ with .NET 2.0 but you will still need Visual Studio 2008 minimum!

Parimal Raj
  • 20,189
  • 9
  • 73
  • 110