XmlConvert.ToUInt16(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Important
This API is not CLS-compliant.
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 null
.
s
is not in the correct format.
s
represents a number less than UInt16.MinValue or greater than UInt16.MaxValue.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.