Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

แปลงทศนิยมเป็นจำนวนเต็ม 64 บิตที่ไม่ได้ลงนามใน C #


ในการแปลงค่าของทศนิยมที่ระบุเป็นจำนวนเต็ม 64 บิตที่ไม่ได้ลงนาม รหัสจะเป็นดังนี้ -

ตัวอย่าง

using System;
public class Demo {
   public static void Main() {
      Decimal val = 99.29m;
      Console.WriteLine("Decimal value = "+val);
      ulong res = Decimal.ToUInt64(val);
      Console.WriteLine("64-bit unsigned integer = "+res);
   }
}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

Decimal value = 99.29
64-bit unsigned integer = 99

ตัวอย่าง

เรามาดูตัวอย่างกัน −

using System;
public class Demo {
   public static void Main(){
      Decimal val = 0.001m;
      Console.WriteLine("Decimal value = "+val);
      ulong res = Decimal.ToUInt64(val);
      Console.WriteLine("64-bit unsigned integer = "+res);
   }
}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

Decimal value = 0.001
64-bit unsigned integer = 0