|  | DoubleComplexParse(String, NumberStyles) Method | 
            Constructs a new DoubleComplex instance from a given string representation
            using the specified style.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic static DoubleComplex Parse(
	string s,
	NumberStyles styles
)
Public Shared Function Parse ( 
	s As String,
	styles As NumberStyles
) As DoubleComplex
public:
static DoubleComplex Parse(
	String^ s, 
	NumberStyles styles
)
static member Parse : 
        s : string * 
        styles : NumberStyles -> DoubleComplex Parameters
- s  String
- A string representation.
- styles  NumberStyles
- Number styles.
Return Value
DoubleComplexA new DoubleComplex instance.
 Remarks
Remarks
            Acceptable strings are of the form:
            
            Unacceptable strings are:
            
            For example, with NumberStyles set to 
NumberStyles.Number | 
            NumberStyles.AllowExponent, the string 
(4.523000e+000,3.400000e+000)
            is parseable. 
            
 See Also
See Also