BigFloat Explicit  Conversion (BigFloat to Single)

Converts a BigFloat to a single-precision floating-point number.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static explicit operator float (
	BigFloat value
)

Parameters

value  BigFloat
The BigFloat to convert.

Return Value

Single
A Single with the same value as value. If value is smaller than MinValue, NegativeInfinity is returned. If value is larger than MaxValue, PositiveInfinity is returned.

Remarks

This method never throws an exception.

See Also