0
votes
Tool for analyzing .Net app memory dumps
I fully recommend .Net Memory Profiler.
Beside being a great live memory profiler for .Net applications, it can also load memory dumps, and let you traverse the objects in the dump in a very intuit …
2
votes
C# .NET 3.0/3.5 features in 2.0 using Visual Studio 2008
You can use Mono's version of the System.Core which fully supports LINQ & Expression Trees.
I compiled its source against .net 2.0, and now I can use it in my .net2.0 projects.
This is great fo …
4
votes
What’s the strangest corner case you’ve seen in C# or .NET?
This is one that I like to ask at parties (which is probably why I don't get invited anymore):
Can you make the following piece of code compile?
public void Foo()
{
…
