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