วิธีการ Decimal.ToUInt16() ใน C# ใช้เพื่อแปลงค่าของ Decimal ที่ระบุให้เป็นจำนวนเต็ม 16 บิตที่ไม่ได้ลงนามที่เทียบเท่า
ไวยากรณ์
ต่อไปนี้เป็นไวยากรณ์ -
public static ushort ToUInt16 (decimal val);
ด้านบน val ค่าคือตัวเลขทศนิยมที่จะแปลง
ตัวอย่าง
ให้เรามาดูตัวอย่างการใช้วิธีการ Decimal.ToUInt16() -
using System; public class Demo { public static void Main(){ Decimal val = 875.647m; Console.WriteLine("Decimal value = "+val); ushort res = Decimal.ToUInt16(val); Console.WriteLine("16-bit unsigned integer = "+res); } }
ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
Decimal value = 875.647 16-bit unsigned integer = 875
ตัวอย่าง
ให้เราดูตัวอย่างอื่นเพื่อใช้วิธีการ Decimal.ToUInt16() -
using System; public class Demo { public static void Main(){ Decimal val = 0.001m; Console.WriteLine("Decimal value = "+val); ushort res = Decimal.ToUInt16(val); Console.WriteLine("16-bit unsigned integer = "+res); } }
ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
Decimal value = 0.001 16-bit unsigned integer = 0