mpf_t Implicit Conversion (String to mpf_t)

GMP Native Interface for .NET

mpf_t  Conversion (String to mpf_t)
Converts a string value to an mpf_t value.

Namespace:  Math.Gmp.Native
Assembly:  Math.Gmp.Native (in Math.Gmp.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static implicit operator mpf_t (
	string value
)
Public Shared Widening Operator CType ( 
	value As String
) As mpf_t
static implicit operator mpf_t^ (
	String^ value
)
F# does not support the declaration of new casting operators.

Parameters

value
Type: SystemString
A string value.

Return Value

Type: mpf_t
An mpf_t value.
Remarks

Base is assumed to be 10 unless the first character of the string is B followed by the base 2 to 62 or -62 to -2 followed by a space and then the floating-point number. Negative values are used to specify that the exponent is in decimal.

See Also