views:

299

answers:

3

I can't make System.Linq (aka. Linq-to-objects) work. I am running MonoDevelop 2.2.1 in Ubuntu 10 Lucid Lynx with Mono 2.4.4.

They advertise in their site that they implemented Linq, but I can't even find Enumerable.Range or .ToArray(). What's wrong?

+1  A: 

Are you using the gmcs compiler? mcs does not seem to compile code containing Linq.

$ cat a.cs
using System;
using System.Linq;

class Test
{
    static void Main()
    {
        foreach (var i in new int[] { 1, 2, 3, 4, 5}.Where(n => n % 2 == 0))
        {
            Console.WriteLine(i);
        }
    }
}
$ gmcs a.cs
$ ./a.exe
2
4

To compile with gmcs, perform the following instructions as described by the MonoDevelop FAQ:

Can I compile my project with gmcs?

Yes. Right click on your project, select 'Options'->'Runtime' and select '2.0' from the drop-down list.

Mark Rushakoff
A: 

What do you mean when you say "can't find"? Intellisense? Many of the linq methods are extension methods, and monodevelop may not support those in intellisense. In which case you can still use them and your code should compile, it just isn't in the drop-downs.

About extension methods

Tim Hoolihan
+4  A: 

I guess what you would need to do is:

  1. In your project options set "Runtime version" to "Mono/.Net 3.5"
  2. Add reference to System.Core package (right click references in solution explorer)
  3. Add "using System.Linq" to your module

after that your code should compile and execute

hope this helps, regards

serge_gubenko
All I needed was to add a reference to System.Core
Jader Dias