将指定 Decimal 的值转换为等效的 C# 16 位无符号整数


若要将指定 Decimal 的值转换为等效的 16 位无符号整数,代码如下 −

例子

 实时演示

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

例子

让我们看另一个示例 −

 实时演示

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

更新于: 2019 年 12 月 10 日

159 次浏览

开启你的职业生涯

完成课程以获得认证

开始学习
广告