Is there any way to generate a ToString() using Visual Studio 2010?
ToString()
I really don\'t want to do this by hand!
[EDIT]
I\'m looking for a s
You can use the StatePrinter project
class AClassWithToString { string B = "hello"; int[] C = {5,4,3,2,1}; // Nice stuff ahead! static readonly StatePrinter printer = new StatePrinter(); public override string ToString() { return printer.PrintObject(this); } }