StreamAddress.Equals Method

Definition

Namespace: Numerics.NET.Random
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.3.0

Overload List

Equals(Object)Indicates whether this instance and a specified object are equal.
Equals(StreamAddress)Indicates whether the current object is equal to another object of the same type.

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(StreamAddress)

Indicates whether the current object is equal to another object of the same type.
C#
public bool Equals(
	StreamAddress other
)

Parameters

other  StreamAddress
An object to compare with this object.

Return Value

Boolean
true if the current object is equal to the other parameter; otherwise, false.

Implements

IEquatable<T>.Equals(T)

See Also