DotNetWebToolkit.Cil2Js.Ast.ExprArgAddress.ExprArgAddress C# (CSharp) Метод

ExprArgAddress() публичный Метод

public ExprArgAddress ( Ctx ctx, Expr arg, TypeReference type ) : System
ctx Ctx
arg Expr
type Mono.Cecil.TypeReference
Результат System
        public ExprArgAddress(Ctx ctx, Expr arg, TypeReference type)
            : base(ctx) {
            //this.Index = index;
            this.Arg = arg;
            this.ElementType = type;
            this.type = type.MakePointer();
        }
ExprArgAddress