C# 中从 Byte 隐式转换为 Decimal


Byte 表示一个 8 位无符号整数。

8 位无符号整数 (Byte) 可以隐式转换为 Decimal。我们来看看它是如何转换的。

下面是我们的 Byte 值。

byte val = 16;

要进行隐式转换,只需要按照下面所示的方式分配值即可 −

decimal dec;
dec = val;

让我们看一个完整的示例。

示例

 实时演示

using System;
public class Demo {
   public static void Main() {
      byte val = 16;
      decimal dec;
      // implicit
      dec = val;
      Console.WriteLine("Decimal ="+dec);
   }
}

输出

Decimal =16

更新于:2020-06-23

301 次浏览

开启你的 职业生涯

通过完成课程获得认证

开始
广告