C#
 Computer >> コンピューター >  >> プログラミング >> C#

C#のDecimal.ToInt64()メソッド


C#のDecimal.ToInt64()メソッドは、指定されたDecimalの値を同等の64ビット符号付き整数に変換するために使用されます。

構文

以下は構文です-

public static long ToInt64 (decimal val);

上記のValは、変換する10進数です。

Decimal.ToInt64()メソッドを実装する例を見てみましょう-

using System;
public class Demo {
   public static void Main(){
      Decimal val1 = -567.7989m;
      Decimal val2 = 456.000m;
      Console.WriteLine("Decimal 1 = "+val1);
      Console.WriteLine("Decimal 2 = "+val2);
      long res1 = Decimal.ToInt64(val1);
      long res2 = Decimal.ToInt64(val2);
      Console.WriteLine("64-bit signed integer (value1) (Decimal to signed integer) = "+res1);
      Console.WriteLine("64-bit signed integer (value1) (Decimal to signed integer) = "+res2);
   }
}

出力

これにより、次の出力が生成されます-

Decimal 1 = -567.7989
Decimal 2 = 456.000
64-bit signed integer (value1) (Decimal to signed integer) = -567
64-bit signed integer (value1) (Decimal to signed integer) = 456

Decimal.ToInt64()メソッドを実装する別の例を見てみましょう-

using System;
public class Demo {
   public static void Main(){
      Decimal val1 = 1.00m;
      Decimal val2 = 34.678m;
      Console.WriteLine("Decimal 1 = "+val1);
      Console.WriteLine("Decimal 2 = "+val2);
      long res1 = Decimal.ToInt64(val1);
      long res2 = Decimal.ToInt64(val2);
      Console.WriteLine("64-bit signed integer (value1) (Decimal to signed integer) = "+res1);
      Console.WriteLine("64-bit signed integer (value1) (Decimal to signed integer) = "+res2);
   }
}

出力

これにより、次の出力が生成されます-

Decimal 1 = 1.00
Decimal 2 = 34.678
64-bit signed integer (value1) (Decimal to signed integer) = 1
64-bit signed integer (value1) (Decimal to signed integer) = 34

  1. C#のDecimal.ToOACurrency()メソッド

    C#のDecimal.ToOACurrency()メソッドは、指定されたDecimal値を、64ビットの符号付き整数に含まれる同等のOLEオートメーション通貨値に変換するために使用されます。 構文 以下は構文です- public static long ToOACurrency (decimal val); 上記のValは、変換する10進数です。 例 Decimal.ToOACurrency()メソッドを実装する例を見てみましょう- using System; public class Demo {    public static void Main(){ &nbs

  2. C#のDecimal.Floor()メソッド

    C#のDecimal.Floor()メソッドは、指定された10進数を負の無限大に最も近い整数に丸めます。 構文 以下は構文です- public static decimal Floor (decimal val); 上記では、Valは丸める値です。 例 Decimal.Floor()メソッドを実装する例を見てみましょう- using System; public class Demo {    public static void Main(){       Decimal val1 = 25.25m;     &nb