XmlConvert.ToUInt16(String) Method

Definition

Important

This API is not CLS-compliant.

Converts the String to a UInt16 equivalent.

public:
 static System::UInt16 ToUInt16(System::String ^ s);
[System.CLSCompliant(false)]
public static ushort ToUInt16 (string s);
[<System.CLSCompliant(false)>]
static member ToUInt16 : string -> uint16
Public Shared Function ToUInt16 (s As String) As UShort

Parameters

s
String

The string to convert.

Returns

A UInt16 equivalent of the string.

Attributes

Exceptions

s is not in the correct format.

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

Applies to