
- C# Basic Tutorial
- C# - Home
- C# - Overview
- C# - Environment
- C# - Program Structure
- C# - Basic Syntax
- C# - Data Types
- C# - Type Conversion
- C# - Variables
- C# - Constants
- C# - Operators
- C# - Decision Making
- C# - Loops
- C# - Encapsulation
- C# - Methods
- C# - Nullables
- C# - Arrays
- C# - Strings
- C# - Structure
- C# - Enums
- C# - Classes
- C# - Inheritance
- C# - Polymorphism
- C# - Operator Overloading
- C# - Interfaces
- C# - Namespaces
- C# - Preprocessor Directives
- C# - Regular Expressions
- C# - Exception Handling
- C# - File I/O
- C# Advanced Tutorial
- C# - Attributes
- C# - Reflection
- C# - Properties
- C# - Indexers
- C# - Delegates
- C# - Events
- C# - Collections
- C# - Generics
- C# - Anonymous Methods
- C# - Unsafe Codes
- C# - Multithreading
- C# Useful Resources
- C# - Questions and Answers
- C# - Quick Guide
- C# - Useful Resources
- C# - Discussion
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 Articles
- 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#
- Implicit conversion from 32-bit unsigned integer (UInt) to Decimal in C#
- Convert the value of the specified string to its equivalent Unicode character in C#
- Convert a specified value to an equivalent Boolean value in C#
- Convert the specified string representation of a logical value to its Boolean equivalent 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#
- Converting an unsigned 32 bit decimal to corresponding ipv4 address in JavaScript
- Convert the specified Windows file time to an equivalent local time in C#
- Java Program to get the value stored in a byte as an unsigned integer
- Convert decimal integer to octal in Java
- Set the bit at a specific position in the BitArray to the specified value in C#?

Advertisements