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

ConvertDecimal เป็นจำนวนเต็ม 32 บิตที่ไม่ได้ลงนามใน C #


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

ตัวอย่าง

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

ผลลัพธ์

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

Decimal value = 0.001
32-bit unsigned integer = 0

ตัวอย่าง

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

using System;
public class Demo {
   public static void Main() {
      Decimal val = 67.487m;
      Console.WriteLine("Decimal value = "+val);
      uint res = Decimal.ToUInt32(val);
      Console.WriteLine("32-bit unsigned integer = "+res);
   }
}

ผลลัพธ์

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

Decimal value = 67.487
32-bit unsigned integer = 67