NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Currency.Equals (Object)

Determines whether this instance of Currency is equal to a specified object.

[Visual Basic]
Overloads Overrides Public Function Equals( _
   ByVal value As Object _
) As Boolean
[C#]
public override bool Equals(
   object value
);
[C++]
public: override bool Equals(
   Object* value
);
[JScript]
public override function Equals(
   value : Object
) : Boolean;

Parameters

value
An object to compare with this instance.

Return Value

true if the given object is a boxed Currency and its value is equal to the value of this Currency, otherwise false.

Remarks

The Equals method performs the arithmetic function of comparing this instance of Currency with the specified object and determines their relationship, then returns the Boolean result of that determination.

See Also

Currency Structure | Currency Members | System Namespace | Currency.Equals Overload List