Quad.Equals Method

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

Equals(Double) Tests whether a number equals another number.
Equals(Object)Indicates whether this instance and a specified object are equal.
Equals(Quad) Tests whether a number equals another number.

Equals(Double)

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

Parameters

other  Double
The number to compare.

Return Value

Boolean
true if the number equals other; otherwise false.

Implements

IEquatable<T>.Equals(T)

Equals(Object)

Indicates whether this instance and a specified object are equal.
C#
public override bool Equals(
	Object? obj
)

Parameters

obj  Object
The object to compare with the current instance.

Return Value

Boolean
true if obj and this instance are the same type and represent the same value; otherwise, false.

Equals(Quad)

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

Parameters

other  Quad
The number to compare.

Return Value

Boolean
true if the number equals other; otherwise false.

Implements

IEquatable<T>.Equals(T)

See Also