char_ptr.Inequality Operator

GMP Native Interface for .NET

char_ptrInequality Operator
Gets a value that indicates whether the two argument values are different.

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 bool operator !=(
	char_ptr value1,
	char_ptr value2
)
Public Shared Operator <> ( 
	value1 As char_ptr,
	value2 As char_ptr
) As Boolean
public:
static bool operator !=(
	char_ptr value1, 
	char_ptr value2
)
static let inline (<>)
        value1 : char_ptr * 
        value2 : char_ptr  : bool

Parameters

value1
Type: Math.Gmp.Nativechar_ptr
A char_ptr value.
value2
Type: Math.Gmp.Nativechar_ptr
A char_ptr value.

Return Value

Type: Boolean
True if the two values are different, and False otherwise.
See Also