O
Oleg Polkovsky
I can suggest you an idea how to add the reference to System.Linq in a C# project. I'm not sure if it works in C# 2005, but it solves the problem in C# 2008.
1) Launch the C# 2008 environment and create or open the necessary project.
2) In the Solution Explorer section, find the node with the name of your project and right-click this node. A context menu will appear, and you have to choose the "Add Reference" option in this menu.
3) You'll see a window called "Add Reference". It has some pages (".NET", "COM", etc.). The first page (".NET") must be opened.
4) In the list below, find the component "System.Core", select it and click "OK".
5) Now you may type "using System.Linq" link in the Code Editor.
1) Launch the C# 2008 environment and create or open the necessary project.
2) In the Solution Explorer section, find the node with the name of your project and right-click this node. A context menu will appear, and you have to choose the "Add Reference" option in this menu.
3) You'll see a window called "Add Reference". It has some pages (".NET", "COM", etc.). The first page (".NET") must be opened.
4) In the list below, find the component "System.Core", select it and click "OK".
5) Now you may type "using System.Linq" link in the Code Editor.