Visual Basic - Explicit conversion to 32-bit real number: CSng
The required type conversion can be carried out as follows:CSng
Description
CSng (expr)
Input
- expr - Any
Output
- return - 32-bit real number
Examples
Visual Basic .NET
Explicit conversion to 32-bit real number the possible of use:Dim x As single= 3.14159265359 ' x = 3.14159274
Dim y As single= 123456789 ' y = 123456792.0
y =CSng((x * y)) ' z = 387850976.0
You can find it in the following collections: explicit type conversions
Explicit conversion to 32-bit real number in another programming language:
Differences to: