Converts a string to a UnitPoint structure.

Namespace:  C1.C1Preview
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
public static bool Parse(
	string s,
	out UnitPoint result,
	bool throwException
)
Visual Basic
Public Shared Function Parse ( _
	s As String, _
	<OutAttribute> ByRef result As UnitPoint, _
	throwException As Boolean _
) As Boolean

Parameters

s
Type: System..::..String
The string to convert.
result
Type: C1.C1Preview..::..UnitPoint%
OUT: The UnitPoint structure representing s.
throwException
Type: System..::..Boolean
Indicates whether an exception should be thrown if the conversion cannot be performed (if an error occurs, and this value is false, result is set to Empty).

Return Value

true if no error occurred, false otherwise.

See Also