Click or drag to resize
mpfr_libmpfr_free_str Method
Free a string allocated by O:Math.Mpfr.Native.mpfr_lib.mpfr_get_str using the unallocation function (see GNU MPFR - Memory Handling).

Namespace:  Math.Mpfr.Native
Assembly:  Math.Mpfr.Native (in Math.Mpfr.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static void mpfr_free_str(
	char_ptr str
)

Parameters

str
Type: Math.Gmp.Nativechar_ptr
Pointer to string.
Remarks

The block is assumed to be strlen(str) + 1 bytes.

Examples
// Create pointer to unmanaged character string pointer.
ptr<char_ptr> str = new ptr<char_ptr>();
mpfr_t r = "12345e6";

Assert.IsTrue(mpfr_lib.mpfr_asprintf(str, "%Re", r) == 10);
Assert.IsTrue(str.Value.ToString() == "1.2345e+10");
mpfr_lib.mpfr_free_str(str.Value);

// Release unmanaged memory allocated for r.
mpfr_lib.mpfr_clear(r);
See Also