Hey guys,
not really “offtopic”; but I found it in Sitecore while I’m working on my current project for netzkern.
If you are debugging with Visual Studio and want to see directly which values the object have without opening all properties. If you are familiar with Sitecore you know this feature, and that’s why I write about it.
The DebuggerDisplay() attribute:
You can implement this in your own solution by adding this to your code:
[DebuggerDisplay("{property1} {property2}")]
 public class ExampleClass
 {
 }
More Information can be found in the msdn: http://msdn.microsoft.com/de-de/library/x810d419(VS.80).aspx
cheers chris
