C# Convert ToUInt16(String)
Description
Convert ToUInt16(String)
converts the specified string
representation of a number to an equivalent 16-bit unsigned integer.
Syntax
Convert.ToUInt16(String)
has the following syntax.
[CLSCompliantAttribute(false)]
public static ushort ToUInt16(
string value
)
Parameters
Convert.ToUInt16(String)
has the following parameters.
value
- A string that contains the number to convert.
Returns
Convert.ToUInt16(String)
method returns A 16-bit unsigned integer that is equivalent to the number in value, or 0 (zero)
if value is null.
Example
// w ww .j a v a 2 s. c o m
using System;
public class MainClass{
public static void Main(String[] argv){
System.Console.WriteLine(Convert.ToUInt16("123"));
}
}
The code above generates the following result.