Microsoft.Z3.FuncDecl.CheckNativeObject C# (CSharp) Méthode

CheckNativeObject() private méthode

private CheckNativeObject ( IntPtr obj ) : void
obj System.IntPtr
Résultat void
        internal override void CheckNativeObject(IntPtr obj)
        {
            if (Native.Z3_get_ast_kind(Context.nCtx, obj) != (uint)Z3_ast_kind.Z3_FUNC_DECL_AST)
                throw new Z3Exception("Underlying object is not a function declaration");
            base.CheckNativeObject(obj);
        }
#endif