UInt32..::..TryParse Method (String, UInt32%)
Tries to convert the string representation of a number to its 32-bit unsigned integer equivalent. A return value indicates whether the conversion succeeded or failed.
Namespace:
SystemAssembly: Bridge (in Bridge.dll)
Syntax
[TemplateAttribute] public static bool TryParse( string s, out uint result )
<TemplateAttribute> _ Public Shared Function TryParse ( _ s As String, _ <OutAttribute> ByRef result As UInteger _ ) As Boolean
[TemplateAttribute] public: static bool^ TryParse( String^ s, [OutAttribute] unsigned int^% result )
Parameters
- s
- Type: System..::..String
A string that represents the number to convert.
- result
- Type: System..::..UInt32%
When this method returns, contains the 32-bit unsigned integer value that is equivalent to the number contained in s, if the conversion succeeded, or zero if the conversion failed. The conversion fails if the s parameter is null or Empty, is not of the correct format, or represents a number that is less than MinValue or greater than MaxValue. This parameter is passed uninitialized; any value originally supplied in result will be overwritten.