| char_ptr Constructor (String) | 
 
            Creates new string in unmanaged memory and initializes it with str.
            
 
    Namespace: 
   Math.Gmp.Native
    Assembly:
   Math.Gmp.Native (in Math.Gmp.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic char_ptr(
	string str
)
Public Sub New ( 
	str As String
)
public:
char_ptr(
	String^ str
)
new : 
        str : string -> char_ptrParameters
- str
 - Type: SystemString
The value of the new string. 
Remarks
            When done with the string, unmanaged memory must be released with free.
            
See Also