Implicit conversion from Byte to Decimal in C#


Byte represents an 8-bit unsigned integer.

Implicit conversion of an 8-bit unsigned integer (Byte) to a Decimal is possible. Let us see how.

Here’s our Byte value.

byte val = 16;

To implicitly convert, just assign the value as shown below −

decimal dec;
dec = val;

Let us see the complete example.

Example

 Live Demo

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

Output

Decimal =16

Updated on: 23-Jun-2020

260 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements