ABT.Env.Dump C# (CSharp) 메소드

Dump() 공개 메소드

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