Complex32TryParse(String, Complex32) Method |
Converts the string representation of a complex number to a single-precision complex number equivalent.
A return value indicates whether the conversion succeeded or failed.
Namespace: Altaxo.CalcAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static bool TryParse(
string value,
out Complex32 result
)
Parameters
- value String
-
A string containing a complex number to convert.
- 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