mp_ptr Constructor (mp_size_t)

GMP Native Interface for .NET

mp_ptr Constructor (mp_size_t)
Creates a new array of size limbs 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(
	mp_size_t size
)
Public Sub New ( 
	size As mp_size_t
)
public:
mp_ptr(
	mp_size_t size
)
new : 
        size : mp_size_t -> mp_ptr

Parameters

size
Type: Math.Gmp.Nativemp_size_t
The number of limbs.
Remarks

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

See Also