Sorry if my question is absolutely stupid, but I just installed the latest versions of Mono (2.10.1) and MonoDevelop on Mac OS X 10.5, and this small piece of code does not compile
using System; using System.Collections.Generic; namespace Tests { class MainClass { public static void Main (string[] args) { HashSet<int> set = new HashSet<int>(); Console.WriteLine("set.Add(5)={0}", set.Add(5)); } } }
I get the error mentioned in the header when I compile ... My project settings say that I am using Mono / .NET 3.5 ...
What can i forget?
Pierroz
source share