Point2D.Equals Method

Definition

Namespace: Numerics.NET.Spatial
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.1.0

Overload List

Equals(Object) Determines whether the specified object is equal to the current instance.
Equals(Point2D) Determines whether the specified Point2D is equal to the current instance.

Equals(Object)

Determines whether the specified object is equal to the current instance.
C#
public override bool Equals(
	Object? obj
)

Parameters

obj  Object
 

Return Value

Boolean

Equals(Point2D)

Determines whether the specified Point2D is equal to the current instance.
C#
public bool Equals(
	Point2D other
)

Parameters

other  Point2D
 

Return Value

Boolean

Implements

IEquatable<T>.Equals(T)

See Also