mp_ptr Constructor (UInt64[])

GMP Native Interface for .NET

mp_ptr Constructor (UInt64)
Creates a new array of limbs initialized with values in unmanaged memory.

Namespace:  Math.Gmp.Native
Assembly:  Math.Gmp.Native (in Math.Gmp.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public mp_ptr(
	ulong[] values
)
Public Sub New ( 
	values As ULong()
)
public:
mp_ptr(
	array<unsigned long long>^ values
)
new : 
        values : uint64[] -> mp_ptr

Parameters

values
Type: SystemUInt64
The values of the limbs.
Remarks

If limbs size is 32 bits, the 64-bit values are split into 32-bit limbs.

When done with the array, you must release the unmanaged memory by calling free.

See Also