BigInteger.Equals Method

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

Equals(BigInteger) Tests whether a number equals another number.
Equals(Int32) Tests whether a number equals another number.
Equals(Object) Returns a value indicating whether this instance is equal to a specified object.

Equals(BigInteger)

Tests whether a number equals another number.
C#
public bool Equals(
	BigInteger other
)

Parameters

other  BigInteger
A BigInteger.

Return Value

Boolean
true if the number equals other; otherwise false.

Implements

IEquatable<T>.Equals(T)

Equals(Int32)

Tests whether a number equals another number.
C#
public bool Equals(
	int other
)

Parameters

other  Int32
A BigInteger.

Return Value

Boolean
true if the number equals other; otherwise false.

Implements

IEquatable<T>.Equals(T)

Equals(Object)

Returns a value indicating whether this instance is equal to a specified object.
C#
public override bool Equals(
	Object obj
)

Parameters

obj  Object
An object to compare with this instance.

Return Value

Boolean
true if obj is an instance of BigInteger and equals the value of this instance; otherwise, false.

See Also