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

Decimal.ToUInt64() วิธีการใน C #


Decimal.ToUInt64() วิธีการใน C # ใช้เพื่อแปลงค่าของทศนิยมที่ระบุเป็นจำนวนเต็ม 64 บิตที่เทียบเท่าที่ไม่ได้ลงนาม

ไวยากรณ์

ต่อไปนี้เป็นไวยากรณ์ -

public static ulong ToUInt64 (decimal val);

ด้านบน Val คือตัวเลขทศนิยมที่จะแปลง

ตัวอย่าง

ให้เราดูตัวอย่างการใช้วิธีการ Decimal.ToUInt64() -

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

ตัวอย่าง

ให้เราดูตัวอย่างอื่นเพื่อใช้วิธีการ Decimal.ToUInt64() -

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