The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
Decimal.Equality Operator (Decimal, Decimal)
.NET Framework (current version)
Returns a value that indicates whether two Decimal values are equal.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- d1
-
Type:
System.Decimal
The first value to compare.
- d2
-
Type:
System.Decimal
The second value to compare.
The Equality method defines the operation of the equality operator for Decimal values. It enables code such as the following:
using System; public class Example { public static void Main() { Decimal number1 = 16354.0695m; Decimal number2 = 16354.0699m; Console.WriteLine("{0} = {1}: {2}", number1, number2, number1 == number2); number1 = Decimal.Round(number1, 2); number2 = Decimal.Round(number2, 2); Console.WriteLine("{0} = {1}: {2}", number1, number2, number1 == number2); } } // The example displays the following output: // 16354.0695 = 16354.0699: False // 16354.07 = 16354.07: True
If the language you're using doesn't support custom operators, call the Equals method instead.
Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Show: