XmlConvert.ToUInt32(String) Method

Definition

Important

This API is not CLS-compliant.

Converts the String to a UInt32 equivalent.

public:
 static System::UInt32 ToUInt32(System::String ^ s);
[System.CLSCompliant(false)]
public static uint ToUInt32 (string s);
[<System.CLSCompliant(false)>]
static member ToUInt32 : string -> uint32
Public Shared Function ToUInt32 (s As String) As UInteger

Parameters

s
String

The string to convert.

Returns

A UInt32 equivalent of the string.

Attributes

Exceptions

s is not in the correct format.

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

Applies to