Decimal.Inequality(Decimal, Decimal) Operátor

Definice

Vrátí hodnotu, která určuje, zda dva Decimal objekty mají různé hodnoty.

public:
 static bool operator !=(System::Decimal d1, System::Decimal d2);
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

Parametry

d1
Decimal

První hodnota pro porovnání.

d2
Decimal

Druhá hodnota pro porovnání.

Návraty

Boolean

true if d1 d2 a nejsou si rovny. V opačném případě false .

Poznámky

Metoda Inequality definuje operaci operátoru nerovnosti pro Decimal hodnoty. Umožňuje následující typ kódu:

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
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

Pokud jazyk, který používáte, nepodporuje vlastní operátory, můžete testovat nerovnost pomocí jedné z následujících technik:

  • Volání metody Compare , která označuje vztah mezi dvěma Decimal hodnotami.

  • Volání Equals metody a zvrácení její hodnoty

Ekvivalentní metoda pro tento operátor je Decimal.Compare(Decimal, Decimal)

Platí pro

Viz také