DotNetWebToolkit.Cil2Js.Ast.ExprVarLocal.ToString C# (CSharp) Méthode

ToString() public méthode

public ToString ( ) : string
Résultat 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;
 }