Bridge

Single..::..TryParse Method (String, Single%)

Converts the string representation of a number to its single-precision floating-point number equivalent. A return value indicates whether the conversion succeeded or failed.

Namespace:  System
Assembly:  Bridge (in Bridge.dll)

Syntax


[TemplateAttribute]
public static bool TryParse(
	string s,
	out float result
)
<TemplateAttribute> _
Public Shared Function TryParse ( _
	s As String, _
	<OutAttribute> ByRef result As Single _
) As Boolean
[TemplateAttribute]
public:
static bool^ TryParse(
	String^ s, 
	[OutAttribute] float^% result
)

Parameters

s
Type: System..::..String
A string representing a number to convert.
result
Type: System..::..Single%
When this method returns, contains single-precision floating-point number equivalent to the numeric value or symbol 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 a number in a valid format, or represents a number less than MinValue or greater than MaxValue. This parameter is passed uninitialized; any value originally supplied in result will be overwritten.

Return Value

true if s was converted successfully; otherwise, false.