Microsoft.Z3.Context.UnwrapAST C# (CSharp) Méthode

UnwrapAST() public méthode

Unwraps an AST.
This function is used for transitions between native and managed objects. It returns the native pointer to the AST. Note that AST objects are reference counted and unwrapping an AST disables automatic reference counting, i.e., all references to the IntPtr that is returned must be handled externally and through native calls (see e.g., Native.Z3_inc_ref).
public UnwrapAST ( AST a ) : IntPtr
a AST The AST to unwrap.
Résultat System.IntPtr
        public IntPtr UnwrapAST(AST a)
        {
            return a.NativeObject;
        }
Context