Decimal.Equality(Decimal, Decimal) 操作员
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回一个值,该值指示两 Decimal 个值是否相等。
public:
static bool operator ==(System::Decimal d1, System::Decimal d2);
public:
static bool operator ==(System::Decimal d1, System::Decimal d2) = System::Numerics::IEqualityOperators<System::Decimal, System::Decimal, bool>::op_Equality;
public static bool operator ==(decimal d1, decimal d2);
static member ( = ) : decimal * decimal -> bool
Public Shared Operator == (d1 As Decimal, d2 As Decimal) As Boolean
参数
- d1
- Decimal
要比较的第一个值。
- d2
- Decimal
要比较的第二个值。
返回
true 如果 d1 且 d2 相等,则为 ;否则为 false。
实现
注解
该方法 Equality 定义值的相等运算符 Decimal 的作。 它启用以下代码:
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
open System
let number1 = 16354.0695m
let number2 = 16354.0699m
printfn $"{number1} = {number2}: {number1 = number2}"
let rounded1 = Decimal.Round(number1, 2)
let rounded2 = Decimal.Round(number2, 2)
printfn $"{rounded1} = {rounded2}: {rounded1 = rounded2}"
// The example displays the following output:
// 16354.0695 = 16354.0699: False
// 16354.07 = 16354.07: True
Module Example
Public Sub Main()
Dim number1 As Decimal = 16354.0695d
Dim number2 As Decimal = 16354.0699d
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)
End Sub
End Module
' The example displays the following output:
' 16354.0695 = 16354.0699: False
' 16354.07 = 16354.07: True
如果使用的语言不支持自定义运算符,请改为调用该方法 Equals 。
此运算符的等效方法为 Decimal.Equals(Object)