PreviousNext

How to dump object properties in C#

by bill-s, 2017-08-26T02:40:33.000Z

This example demonstrates how to dump object properties to console or some other stream using reflection. It works only on instance properties as there is rare need to dump out static part of objects.

Read More