mpz_t Implicit Conversion (String to mpz_t)

GMP Native Interface for .NET

mpz_t  Conversion (String to mpz_t)
Converts a string value to an mpz_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 mpz_t (
	string value
)
Public Shared Widening Operator CType ( 
	value As String
) As mpz_t
static implicit operator mpz_t^ (
	String^ value
)
F# does not support the declaration of new casting operators.

Parameters

value
Type: SystemString
A string value.

Return Value

Type: mpz_t
An mpz_t value.
Remarks

The leading characters are used: 0x and 0X for hexadecimal, 0b and 0B for binary, 0 for octal, or decimal otherwise.

See Also