
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
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 Decimal to 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
Advertisements