DotNetWebToolkit.Cil2Js.Ast.ExprIsInst.ExprIsInst C# (CSharp) 메소드

ExprIsInst() 공개 메소드

public ExprIsInst ( Ctx ctx, Expr expr, TypeReference toType ) : System
ctx Ctx
expr Expr
toType Mono.Cecil.TypeReference
리턴 System
        public ExprIsInst(Ctx ctx, Expr expr, TypeReference toType)
            : base(ctx) {
            this.Expr = expr;
            this.toType = toType;
        }
ExprIsInst