C# Convert ToUInt16(Decimal)
Description
Convert ToUInt16(Decimal)
converts the value of the
specified decimal number to an equivalent 16-bit unsigned integer.
Syntax
Convert.ToUInt16(Decimal)
has the following syntax.
[CLSCompliantAttribute(false)]
public static ushort ToUInt16(
decimal value
)
Parameters
Convert.ToUInt16(Decimal)
has the following parameters.
value
- The decimal number to convert.
Returns
Convert.ToUInt16(Decimal)
method returns value, rounded to the nearest 16-bit unsigned integer. If value is halfway
between two whole numbers, the even number is returned; that is, 4.5 is converted
to 4, and 5.5 is converted to 6.
Example
//from w w w. j a v a 2 s . c om
using System;
public class MainClass{
public static void Main(String[] argv){
System.Console.WriteLine(Convert.ToUInt16((Decimal)123));
}
}
The code above generates the following result.