Decimal.Inequality(Decimal, Decimal) Operador

Definição

Retorna um valor que indica se dois Decimal objetos têm valores diferentes.

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

Parâmetros

d1
Decimal

O primeiro valor a ser comparado.

d2
Decimal

O segundo valor a ser comparado.

Retornos

true se d1 e d2 não forem iguais; caso contrário, false.

Implementações

Comentários

O Inequality método define a operação do operador de desigualdade para Decimal valores. Ele habilita o código, como o seguinte:

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

Se o idioma que você está usando não oferecer suporte a operadores personalizados, você poderá testar a desigualdade usando uma das seguintes técnicas:

  • Chamando o Compare método, que indica a relação entre dois Decimal valores.
  • Chamando o Equals método e revertendo seu valor.

O método equivalente para esse operador é Decimal.Compare(Decimal, Decimal)

Aplica-se a

Confira também