DotNetWebToolkit.Cil2Js.Ast.ExprVarLocal.ToString C# (CSharp) 메소드

ToString() 공개 메소드

public ToString ( ) : string
리턴 string
        public override string ToString() {
            if (this.Name == null) {
                return string.Format("Var_{0:x8}:{1}", this.GetHashCode(), this.Type.Name);
            } else {
                return this.Name;
            }
        }

Usage Example

예제 #1
0
 protected override ICode VisitVarLocal(ExprVarLocal e) {
     this.code.Append(e.ToString());
     return e;
 }