When debugging an ASP.NET application, I want to get a listing of the entire state of a very large object. I want all the properties and values โโin this object and the same for each property object to be recursive.
Since the external interface of the application expires after a significant delay, I cannot add a clock or use the Immediate window or move the cursor over an object, since there will not be enough time to fully examine the object.
Is there a way to get a full listing of an object in debug mode or, say, a C # utility or function that does this?
source share