Método Decimal.Negate() en C#

Este método se utiliza para obtener el resultado de multiplicar el valor decimal especificado por uno negativo.

Sintaxis: negación decimal estática pública (decimal a);

Parámetro:
a : este parámetro especifica el decimal que se convertirá.

Valor devuelto: un número decimal con el valor de a , pero con el signo opuesto. Pero cero, si a es cero.

Los siguientes programas ilustran el uso del método Decimal.Negate(Decimal) :

Ejemplo 1: Cuando a es positivo

// C# program to demonstrate the
// Decimal.Negate(Decimal) Method
using System;
using System.Globalization;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
  
        // Declaring the decimal variable
        Decimal a = 127.97m;
  
        // using Negate() method;
        Decimal value = Decimal.Negate(a);
  
        // Display the negative value
        Console.WriteLine("The negative value "+
                             "is : {0}", value);
    }
}
Producción:

The negative value is : -127.97

Ejemplo 2: Cuando a es negativo

// C# program to demonstrate the
// Decimal.Negate(Decimal) Method
using System;
using System.Globalization;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
  
        // Declaring the decimal variable
        Decimal a = -12.39m;
  
        // using Negate() method;
        Decimal value = Decimal.Negate(a);
  
        // Display the value after
        // using negate method
        Console.WriteLine("The value is : {0}",
                                        value);
    }
}
Producción:

The value is : 12.39

Ejemplo 3: Si a es cero.

// C# program to demonstrate the
// Decimal.Negate(Decimal) Method
using System;
using System.Globalization;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
  
        // Declaring the decimal variable
        Decimal a = 0.00m;
  
        // using Negate() method;
        Decimal value = Decimal.Negate(a);
  
        // Display the Negate value
        Console.WriteLine("The Negate value "+
                           "is : {0}", value);
    }
}
Producción:

The Negate value is : 0.00

Referencia:

Publicación traducida automáticamente

Artículo escrito por IshwarGupta y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *