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

ExprIsInst() public method

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