NSDecimal.Equals Method

Definition

Overloads

Name Description
Equals(NSDecimal)

Determines whether the current NSDecimal is equal to another NSDecimal.

Equals(Object)

Determines whether the current NSDecimal is equal to the specified object.

Equals(NSDecimal)

Determines whether the current NSDecimal is equal to another NSDecimal.

public bool Equals(Foundation.NSDecimal other);
override this.Equals : Foundation.NSDecimal -> bool

Parameters

other
NSDecimal

The value to compare with the current value.

Returns

true if the values are equal; otherwise, false.

Implements

Applies to

Equals(Object)

Determines whether the current NSDecimal is equal to the specified object.

public override bool Equals(object obj);
public override bool Equals(object? obj);
override this.Equals : obj -> bool

Parameters

obj
Object

The object to compare with the current value.

Returns

true if the specified object is an NSDecimal and is equal to the current value; otherwise, false.

Applies to