DotNetWebToolkit.Cil2Js.Ast.ExprVarLocal.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return 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

 protected override ICode VisitVarLocal(ExprVarLocal e) {
     this.code.Append(e.ToString());
     return e;
 }