Programming/C#
2017. 9. 23.
ObjectDumper Class
// Copyright (c) Microsoft Corporation. All rights reserved. using System; using System.IO; using System.Collections; using System.Collections.Generic; using System.Reflection; public class ObjectDumper { public static void Write(object o) { Write(o, 0); } public static void Write(object o, int depth) { Write(o, depth, Console.Out); } public static void Write(object o, int depth, TextWriter log)..