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

ExprVarLocal() public méthode

public ExprVarLocal ( Ctx ctx, TypeReference type, string name = null ) : System
ctx Ctx
type Mono.Cecil.TypeReference
name string
Résultat System
        public ExprVarLocal(Ctx ctx, TypeReference type, string name = null)
            : base(ctx) {
            this.type = type.NullThru(x => x.FullResolve(ctx));
            this.Name = name;
        }