XmlConvert::ToUInt16 Method (String^)

 

Converts the String to a UInt16 equivalent.

This API is not CLS-compliant.

Namespace:   System.Xml
Assembly:  System.Xml (in System.Xml.dll)

public:
[CLSCompliantAttribute(false)]
static unsigned short ToUInt16(
	String^ s
)

Parameters

s
Type: System::String^

The string to convert.

Return Value

Type: System::UInt16

A UInt16 equivalent of the string.

Exception Condition
ArgumentNullException

s is null.

FormatException

s is not in the correct format.

OverflowException

s represents a number less than UInt16::MinValue or greater than UInt16::MaxValue.

Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Return to top
Show: