Computer >> Máy Tính >  >> Lập trình >> C#

Chuyển đổi thập phân thành Int64 (dài) trong C #

Sử dụng phương thức Convert.ToInt64 () để chuyển đổi Decimal thành Int64 (long) trong C #.

Giả sử chúng ta có một biến số thập phân.

decimal d = 310.23m;

Bây giờ để chuyển đổi nó thành Int64, hãy sử dụng phương thức Convert.ToInt64 ().

long res;
res = Convert.ToInt64(d);

Hãy để chúng tôi xem một ví dụ khác -

Ví dụ

using System;
class Demo {
   static void Main() {
      decimal d = 190.66m;
      long res;
      res = Convert.ToInt64(d);
      Console.WriteLine("Converted Decimal '{0}' to Int64 value {1}", d, res);
   }
}

Đầu ra

Converted Decimal '190.66' to Int64 value 191