C# 中将 Decimal 转换为等效的 32 位无符号整数

csharpserver side programmingprogramming更新于 2024/10/6 22:12:00

将指定的 Decimal 值转换为等效的 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

相关文章