Converts a Currency to a Single.
[Visual Basic] Public Shared Function ToSingle( _ ByVal c As Currency _ ) As Single [C#] public static float ToSingle( Currency c ); [C++] public: static float ToSingle( Currency c ); [JScript] public static function ToSingle( c : Currency ) : float;
The result of converting the Currency value to a Single.
The ToSingle method converts a Currency value to a Single (float). Since a Single has fewer significant digits than a Currency, this operation may produce round-off errors.