Beispiel #1
0
        public static string Dump(object element, int depth = 4, int indentSize = 2, char indentChar = ' ')
        {
            var instance = new ObjectDumper(depth, indentSize, indentChar);

            return(instance.DumpElement(element, true));
        }