ABT.Env.Dump C# (CSharp) Method

Dump() public method

public Dump ( ) : String
return String
        public String Dump() {
            String str = "";
            Int32 depth = 0;
            foreach (Scope scope in this._scopes) {
                str += scope.Dump(depth, "  ");
                depth++;
            }
            return str;
        }