Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

C#의 Decimal.ToInt64() 메서드

<시간/>

C#의 Decimal.ToInt64() 메서드는 지정된 Decimal의 값을 해당하는 64비트 부호 있는 정수로 변환하는 데 사용됩니다.

구문

다음은 구문입니다 -

public static long ToInt64 (decimal val);

위의 Val은 변환할 십진수입니다.

예시

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