Parse a string literal such as "(1.0,1.0)" as a Complex

Syntax

C#
public static Complex Parse(
	string s
)
Visual Basic
Public Shared Function Parse ( _
	s As String _
) As Complex
Visual C++
public:
static Complex Parse(
	String^ s
)
F#
static member Parse : 
        s : string -> Complex 

Parameters

s
Type: System..::..String
String representing a Complex value

Return Value

result of parsing a string literal such as "(1.0,1.0)" as a Complex

See Also