

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Convert the value of the specified Decimal to the equivalent 16-bit unsigned integer in C#
To convert the value of the specified Decimal to the equivalent 16-bit unsigned integer, the code is as follows −
Example
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 see another example −
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
- Related Questions & Answers
- Convert Decimal to the equivalent 64-bit unsigned integer in C#
- Convert Decimal to equivalent 8-bit unsigned integer in C#
- Implicit conversion from 16-bit unsigned integer (ushort) to Decimal in C#
- ConvertDecimal to equivalent 32-bit unsigned integer in C#
- Convert the value of the specified string to its equivalent Unicode character in C#
- Implicit conversion from 32-bit unsigned integer (UInt) to Decimal in C#
- Convert the specified string representation of a logical value to its Boolean equivalent in C#
- Convert a specified value to an equivalent Boolean value in C#
- Convert varchar to unsigned integer in MySQL
- Convert the specified double-precision floating point number to a 64-bit signed integer in C#
- Convert the specified Windows file time to an equivalent local time in C#
- Converting an unsigned 32 bit decimal to corresponding ipv4 address in JavaScript
- Set the bit at a specific position in the BitArray to the specified value in C#?
- Java Program to get the value stored in a byte as an unsigned integer
- 16-bit microprocessors
Advertisements