[This is preliminary documentation and is subject to change.]

Compares two BigInts for equality.

Namespace:  BigNum
Assembly:  BigNum (in BigNum)
Version: 1.0.0.0

Syntax

C#
public bool Equals(
	BigInt other
)
Visual Basic (Declaration)
Public Function Equals ( _
	other As BigInt _
) As Boolean
Visual C++
public:
virtual bool Equals(
	BigInt^ other
) sealed

Parameters

other
Type: BigNum..::.BigInt
The BigInt to compare to.

Return Value

True if the numbers are equal, false otherwise.

Implements

IEquatable<(Of <(T>)>)..::.Equals(T)

See Also