Determines whether two specified Decimal values are equal.
[C#] public static bool operator ==( Decimal d1, Decimal d2 ); [C++] public: static bool operator op_Equality( Decimal d1, Decimal d2 ); [JScript] returnValue = d1 == d2;
[Visual Basic] In Visual Basic, you cannot use the operators defined by a type, nor override them or define your own.
[JScript] In JScript, you can use the operators defined by a type, but you cannot override them or define your own.
true if the two Decimal numbers have the same value, otherwise false.
The op_Equality method compares two specified Decimal, determines whether the values are equal (d1 + d), and returns a Boolean result.