Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

6 Answers

up vote 22 down vote accepted

You could base something on the ObjectDumper code that ships with the Linq samples.
Have also a look at the answer of this related question to get a sample.

share|improve this answer
Wow -- great idea. Also, here is this idea as an extension method blogs.msdn.com/danielfe/archive/2005/09/22/473018.aspx – Dan Esparza Dec 11 '08 at 18:24
Doesn't seem to work for XmlDocuments... – John Hunter Jul 2 '09 at 13:42
It also doesn't work for arrays (it just displays the type and the length of the array, but doesn't print its contents). – Konrad Morawski Sep 20 '12 at 6:57

I have a T.Dump() extension method that does exactly this, recursively dumps all properties of any type in a nice readable format.

Example usage:

var model = new TestModel();
Console.WriteLine(model.Dump());

and output:

{
    Int: 1,
    String: One,
    DateTime: 2010-04-11,
    Guid: c050437f6fcd46be9b2d0806a0860b3e,
    EmptyIntList: [],
    IntList:
    [
        1,
        2,
        3
    ],
    StringList:
    [
        one,
        two,
        three
    ],
    StringIntMap:
    {
        a: 1,
        b: 2,
        c: 3
    }
}
share|improve this answer
2  
I'm loving it! Thanks a bunch! – balexandre May 25 '11 at 9:26
It doesn't work for fields. The OP was explicitly asking about "entire objects". – Konrad Morawski Sep 20 '12 at 7:04
@KonradMorawski WTF?? He didn't say fields (which it doesn't do by design). This has been immensely helpful - one of my most used extension methods to date. – mythz Sep 20 '12 at 7:56
2  
He didn't say fields - he said entire objects, which includes fields. He also mentioned Visual Studio's Immediate Window feature as an example what of he wanted to achieve ("Just doing a simple ? objectname will give me a nicely formatted 'dump' of the object"). ? objectname prints out all the fields as well. This has been immensely helpful - one of my most used extension methods to date - I'm not questioning that it's useful, only that it dumps entire objects. – Konrad Morawski Sep 20 '12 at 8:24
1  
@mythz revenge downvote? :) That's really mature – Konrad Morawski Sep 20 '12 at 9:42
show 4 more comments

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.

share|improve this answer

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.

share|improve this answer

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 ...
share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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