Patcher.Rules.ObjectDumper.ObjectDumper C# (CSharp) Method

ObjectDumper() static private method

static private ObjectDumper ( ) : System
return System
        static ObjectDumper()
        {
            indents = new string[maxDepth];
            indents[0] = string.Empty;

            for (int i = 1; i < maxDepth; i++)
            {
                indents[i] = new string(Enumerable.Range(0, i * idenentStep).Select(e => ' ').ToArray());
            }
        }

Same methods

ObjectDumper::ObjectDumper ( string prefix ) : System