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

ExprVarLocal() public method

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