Click or drag to resize

Complex32TryParse(String, IFormatProvider, Complex32) Method

Converts the string representation of a complex number to single-precision complex number equivalent. A return value indicates whether the conversion succeeded or failed.

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static bool TryParse(
	string value,
	IFormatProvider formatProvider,
	out Complex32 result
)

Parameters

value  String
A string containing a complex number to convert.
formatProvider  IFormatProvider
An IFormatProvider that supplies culture-specific formatting information about value.
result  Complex32
The parsed value.

Return Value

Boolean
If the conversion succeeds, the result will contain a complex number equivalent to value. Otherwise the result will contain complex32.Zero. This parameter is passed uninitialized
See Also