在C#中将ConvertDecimal转换为等效的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.00132-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.48732-bit unsigned integer = 67
以上是 在C#中将ConvertDecimal转换为等效的32位无符号整数 的全部内容, 来源链接: utcz.com/z/322288.html