ObjectDumper class in LINQ
I am learning 开发者_高级运维LINQ
. Several examples use ObjectDumper
. What is the use of it?
It's a helper class defined in the sample that prints out the contents of the sequence and properties of an object to the console so that you can investigate it. It uses reflection to do so.
精彩评论