Método Decimal.ToOACurrency() en C#

El método Decimal.ToOACurrency(Decimal) se utiliza para convertir el valor Decimal especificado en el valor de Moneda de automatización OLE equivalente, que está contenido en un entero de 64 bits con signo.

Sintaxis: pública estática larga ToOACurrency (valor decimal);
Aquí, se necesita el número decimal para convertir.

Valor devuelto: este método devuelve un entero de 64 bits con signo que contiene el equivalente de Automatización OLE de valor.

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

Ejemplo 1:

// C# program to demonstrate the
// Decimal.ToOACurrency() Method
using System;
using System.Globalization;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
        // Declaring and initializing value1
        Decimal curr = 40;
  
        // A 64-bit signed integer that contains
        // the OLE Automation equivalent of value.
        long value = Decimal.ToOACurrency(curr);
  
        // Display the HashCode
        Console.WriteLine("Equivalent long value is {0}", value);
    }
}
Producción:

Equivalent long value is 400000

Ejemplo 2:

// C# program to demonstrate the
// Decimal.ToOACurrency() Method
using System;
using System.Globalization;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
        // calling get() method
        Console.WriteLine("Equivalent long value are respectivily");
        get(20);
        get(30);
        get(40);
        get(4294967295);
    }
  
    // defining get() method
    public static void get(decimal curr)
    {
  
        // getting Equivalent decimal value
        // using ToOACurrency() method
        long value = Decimal.ToOACurrency(curr);
  
        // Display the HashCode
        Console.WriteLine("{0}", value);
    }
}
Producción:

Equivalent long value are respectivily
200000
300000
400000
42949672950000

Referencia:

Publicación traducida automáticamente

Artículo escrito por RohitPrasad3 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 *