Link to home
Start Free TrialLog in
Avatar of Ching Tello
Ching TelloFlag for United States of America

asked on

Convert C++ code to C#

Need help to convert below C++ code to C#. Thanks for the help.

In C++:
double dValue = 14 / 1000;
ostringstream oss;
oss.precision(10);
oss<<fixed<<dValue;
string sValue = oss.str();
ASKER CERTIFIED SOLUTION
Avatar of it_saige
it_saige
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Ching Tello

ASKER

This is exactly what I want. I appreciate your help.