Decimal.Inequality(Decimal, Decimal) Operator

定義

2 つの 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_Inequality;
public static bool operator !=(decimal d1, decimal d2);
static member op_Inequality : decimal * decimal -> bool
Public Shared Operator != (d1 As Decimal, d2 As Decimal) As Boolean

パラメーター

d1
Decimal

比較する最初の値。

d2
Decimal

比較する 2 番目の値。

返品

true d1d2が等しくない場合はfalse

実装

注釈

Inequalityメソッドは、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: True
//       16354.07 <> 16354.07: False
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: True
//       16354.07 <> 16354.07: False
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: True
'       16354.07 <> 16354.07: False

使用している言語でカスタム演算子がサポートされていない場合は、次のいずれかの手法を使用して、不等式をテストできます。

  • Compare メソッドを呼び出します。これは、2 つのDecimal値間のリレーションシップを示します。
  • Equals メソッドを呼び出し、その値を逆にします。

この演算子の同等のメソッドは次のようになります。 Decimal.Compare(Decimal, Decimal)

適用対象

こちらもご覧ください