UInt32..::..Parse Method (String)
Converts the string representation of a number to its 32-bit unsigned integer equivalent.
Namespace:
SystemAssembly: Bridge (in Bridge.dll)
Syntax
[TemplateAttribute] public static uint Parse( string s )
<TemplateAttribute> _ Public Shared Function Parse ( _ s As String _ ) As UInteger
[TemplateAttribute] public: static unsigned int^ Parse( String^ s )
Parameters
- s
- Type: System..::..String
A string representing the number to convert.
Return Value
A 32-bit unsigned integer equivalent to the number contained in s.Exceptions
Exception | Condition |
---|---|
System..::..ArgumentNullException | The s parameter is null. |
System..::..FormatException | The s parameter is not of the correct format. |
System..::..OverflowException | The s parameter represents a number that is less than MinValue or greater than MaxValue. |