vote up 2 vote down star
6

So for viewing a current object's state at runtime, I really like what the Visual Studio Immediate window gives me. Just doing a simple

? objectname

Will give me a nicely formatted 'dump' of the object.

Is there an easy way to do this in code, so I can do something similar when logging?

flag

5 Answers

vote up 4 vote down check

You could base something on the ObjectDumper code that ships with the Linq samples.

link|flag
Wow -- great idea. Also, here is this idea as an extension method blogs.msdn.com/danielfe/archive/… – Dan Esparza Dec 11 '08 at 18:24
Doesn't seem to work for XmlDocuments... – John Hunter Jul 2 at 13:42
vote up 1 vote down

It might be a little off-topic here, but Darryl Braaten's post reminded me the DebuggerDisplay attribute for object preview in the watch window while debugging.

link|flag
vote up 1 vote down

What I like doing is overriding ToString() so that I get more useful output beyond the type name. This is handy in the debugger, you can see the information you want about an object without needing to expand it.

link|flag
vote up 2 vote down

I'm certain there are better ways of doing this, but I have in the past used a method something like the following to serialize an object into a string that I can log:

  private string ObjectToXml(object output)
  {
     string objectAsXmlString;

     System.Xml.Serialization.XmlSerializer xs = new System.Xml.Serialization.XmlSerializer(output.GetType());
     using (System.IO.StringWriter sw = new System.IO.StringWriter())
     {
        try
        {
           xs.Serialize(sw, output);
           objectAsXmlString = sw.ToString();
        }
        catch (Exception ex)
        {
           objectAsXmlString = ex.ToString();
        }
     }

     return objectAsXmlString;
  }

You'll see that the method might also return the exception rather than the serialized object, so you'll want to ensure that the objects you want to log are serializable.

link|flag
vote up 1 vote down

You could use reflection and loop through all the object properties, then get their values and save them to the log. The formatting is really trivial (you could use \t to indent an objects properties and its values):

MyObject
    Property1 = value
    Property2 = value2
    OtherObject
       OtherProperty = value ...
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.