Click or drag to resize
mpfr_libmpfr_sprintf Method
Form a null-terminated string corresponding to the optional arguments under the control of the template string template, and print it in buf.

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 int mpfr_sprintf(
	char_ptr buf,
	string template,
	params Object[] arguments
)

Parameters

buf
Type: Math.Gmp.Nativechar_ptr
The output buffer.
template
Type: SystemString
Format string. See Formatted Output Functions.
arguments
Type: SystemObject
Arguments.

Return Value

Type: Int32
Return the number of characters written in the array buf not counting the terminating null character or a negative value if an error occurred.
Remarks

No overlap is permitted between buf and the other arguments.

Examples
// Allocate unmanaged string with 50 characters.
char_ptr str = new char_ptr(".................................................");
mpfr_t r = "12345e6";

// Print to string.
Assert.IsTrue(mpfr_lib.mpfr_sprintf(str, "%Re", r) == 10);
Assert.IsTrue(str.ToString() == "1.2345e+10");
Assert.IsTrue(mpfr_lib.mpfr_sprintf(str, "%Rf", r) == 18);
Assert.IsTrue(str.ToString() == "12345000000.000000");
Assert.IsTrue(mpfr_lib.mpfr_sprintf(str, "%Rg", r) == 10);
Assert.IsTrue(str.ToString() == "1.2345e+10");
Assert.IsTrue(mpfr_lib.mpfr_sprintf(str, "%Ra", r) == 15);
Assert.IsTrue(str.ToString() == "0x2.dfd1c04p+32");
mpfr_lib.mpfr_clear(r);
gmp_lib.free(str);
See Also