Method Equals
Equals(Object)
Compares this instance to an object value and returns true if they are both AfterPayMoney instances that are considered equal, otherwise false.
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
System.Object | obj | The other value to comnpare to. |
Returns
Type | Description |
---|---|
System.Boolean | True if |
Overrides
System.ValueType.Equals(System.Object)
Remarks
If obj
is null or not an instance of AfterPayMoney then false is returned, otherwise the result of Equals(AfterPayMoney) is returned.
Equals(AfterPayMoney)
Returns true if this instance is considered equal to other
, otherwise returns false.
Declaration
public bool Equals(AfterPayMoney other)
Parameters
Type | Name | Description |
---|---|---|
AfterPayMoney | other | The other instance to compare to. |
Returns
Type | Description |
---|---|
System.Boolean | True if the two instances are considered equal. |