1

I have seen Object.Dump() method where you can see the object created in the bottom of of the Visual Studio after running. Does anybody know what plug-in I need?

Diggie
  • 142
  • 3
  • 10

2 Answers2

1

I think you're referring to LinqPad, which has a Dump() extension method to see the object details. Visual Studio has no built-in extension that I know of.

D Stanley
  • 149,601
  • 11
  • 178
  • 240
1

You have probably been looking at examples of C# code running inside of LinqPad, which does have a Dump method.

Otherwise, the author created the Dump method.

There is no Dump method in .NET, and I don't know of any "plug-in" (library) that includes one.

John Saunders
  • 160,644
  • 26
  • 247
  • 397