Welcome to SpellCoder Sign in | Join | Help
ScottGu just made a post about the "automatic properties" on how it cut down on the clutter of defining the private field behind the property. This feature is a hack and should be ignored. The problem here are twofolds: You can only have one type of Read More
1.  You can install it side by side with Visual Studio 2005 without problems. 2. It has proper uninstall support so you can uninstall it next February when the new CTP hits the wire. 3. It adds .Net framework 2 SP 1. 4. There is a bug in the IDE Read More
This is a tutorial on using Functional Programming (FP) techniques for constructing LINQ queries. It is certainly possible to write simple LINQ queries without using these techniques, but as soon as you start writing more complicated queries, Read More
"Expression<Func<int, int>> expr = a => a + 3;Console.WriteLine(expr); // prints "a => Add(a, 3)"Func<int, int> func = expr.Compile(); // LCG's an MSIL method from the exprConsole.WriteLine(func(4)); // prints "7"" (Don Box)You Read More