|  | DoubleComplexParse(String) Method | 
            Constructs a DoubleComplex instance from a string representation of the
            form real,imag or (real,imag).
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic static DoubleComplex Parse(
	string s
)
Public Shared Function Parse ( 
	s As String
) As DoubleComplex
public:
static DoubleComplex Parse(
	String^ s
)
static member Parse : 
        s : string -> DoubleComplex Parameters
- s  String
- String representation.
Return Value
DoubleComplexA new DoubleComplex instance.
 Remarks
Remarks
            Whitespace is ignored. If only one value is supplied, it is assumed to be
            the real part. For example, acceptable strings are:
            
            Unacceptable strings are:
            
 See Also
See Also