在 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
广告