mathInt32BitsToSingle Method |
Converts the specified 32-bit signed integer to a single-precision floating point number.
Namespace:
C
Assembly:
C.math (in C.math.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static float Int32BitsToSingle(
int value
)
Public Shared Function Int32BitsToSingle (
value As Integer
) As Single
public:
static float Int32BitsToSingle(
int value
)
static member Int32BitsToSingle :
value : int -> float32
Parameters
- value
- Type: SystemInt32
The number to convert.
Return Value
Type:
SingleA double-precision floating point number whose value is equivalent to
value.
See Also