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


要将指定 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

Learn C# in-depth with real-world projects through our C# certification course. Enroll and become a certified expert to boost your career.

示例

我们来看另一个示例 −

 在线演示

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

更新时间:2019 年 12 月 11 日

367 次浏览

开启你的 职业生涯

完成课程即可获得认证

开始
广告