Welcome to SpellCoder Sign in | Join | Help
"Finally, he pointed out that there have been no significant advances in computer science for several decades. He's got some background in biology, and for years he tried to keep up with the field. Every couple of months he'd go over the new developments Read More
0 Comments
Filed Under:
"We could do the same with XML. Of course the line above isn't really a list, it's a tree, just like its XML-alternative. Don't let references to lists confuse you, it's just that lists that contain other lists and trees are effectively Read More
0 Comments
Filed Under:
"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
0 Comments
Filed Under: ,