← Customer Feedback for LINQPad Settings and activity 1 result found Add Dump to ExpandoObject 12 votes Vote Vote Vote Vote We're glad you're herePlease sign in to leave feedback Signed in as (Sign out) Close Close 1 vote 2 votes 3 votes Remove votes You have left! (?) (thinking…) 2 comments · LINQPad Feature Suggestions · Delete… · Admin → How important is this to you? Not at all You must login first! Important You must login first! Critical You must login first! We're glad you're herePlease sign in to leave feedback Signed in as (Sign out) Close Close An error occurred while saving the comment Hemme commented · Mar 13, 2011 · Edit… · Delete… You can cast it to IDictionary<string,object> before dumping it. For instance: dynamic x = new ExpandoObject(); x.Name = "Mario"; x.Age = 23; ((IDictionary<string,object>)x).Dump(); Save Submitting...
You can cast it to IDictionary<string,object> before dumping it.
For instance:
dynamic x = new ExpandoObject();
x.Name = "Mario";
x.Age = 23;
((IDictionary<string,object>)x).Dump();