Click or drag to resize

Complex32Parse Method

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.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
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