Creates a complex number based on a string. The string can be in the
following formats (without the quotes): 'n', 'ni', 'n +/- ni',
'ni +/- n', 'n,n', 'n,ni,' '(n,n)', or '(n,ni)', where n is a float.
Namespace: Altaxo.CalcAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static Complex32 Parse(
string value,
IFormatProvider formatProvider = null
)
Parameters
- value String
-
the string to parse.
- formatProvider IFormatProvider (Optional)
-
An IFormatProvider that supplies culture-specific
formatting information.
Return Value
Complex32
A complex number containing the value specified by the given string.
See Also