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 (Currency, Currency)

Determines whether two specified Currency values are equal.

[Visual Basic]
Overloads Public Shared Function Equals( _
   ByVal c1 As Currency, _
   ByVal c2 As Currency _
) As Boolean
[C#]
public static bool Equals(
   Currency c1,
   Currency c2
);
[C++]
public: static bool Equals(
   Currency c1,
   Currency c2
);
[JScript]
public static function Equals(
   c1 : Currency,
   c2 : Currency
) : Boolean;

Parameters

c1
The first (left) Currency.
c2
The second (right) Currency.

Return Value

true if the two Currency values are equal, otherwise false.

Remarks

The Equals method performs the arithmetic function of comparing two Currency values and determines their relationship, then returns the Boolean result of that determination.

See Also

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