Decimal.Equality(Decimal, Decimal) 演算子
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
2 つの Decimal 値が等しいかどうかを示す値を返します。
public:
static bool operator ==(System::Decimal d1, System::Decimal d2);
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
比較する 2 番目の値です。
戻り値
d1
と d2
が等しい場合は true
。それ以外の場合は 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
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)