Decimal.ToUInt16() Method in C#


The Decimal.ToUInt16() method in C# is used to convert the value of the specified Decimal to the equivalent 16-bit unsigned integer.

Syntax

Following is the syntax −

public static ushort ToUInt16 (decimal val);

Above, the value val is the decimal number to convert.

Example

Let us now see an example to implement the Decimal.ToUInt16() method −

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);
   }
}

Output

This will produce the following output −

Decimal value = 875.647
16-bit unsigned integer = 875

Example

Let us now see another example to implement the Decimal.ToUInt16() method −

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);
   }
}

Output

This will produce the following output −

Decimal value = 0.001
16-bit unsigned integer = 0

Updated on: 07-Nov-2019

28 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements