vote up 2 vote down star

From managed c++, I am calling an unmanaged c++ method which returns a double. How can I convert this double into a managed string?

Sorry if this is a stupid question, I'm still very new with C++ in .net.

Thanks!

flag

50% accept rate

4 Answers

vote up 5 vote down check

I assume something like

(gcnew System::Double(d)).ToString()
link|flag
Short and concised, thanks! Note: It should be (gcnew System::Double(d))->ToString() instead, but close enough. – stung Sep 19 '08 at 19:10
vote up 1 vote down

C++ is definitely not my strongest skillset. Misread the question, but this should convert to a std::string, not exactly what you are looking for though, but leaving it since it was the original post....

double d = 123.45;
std::ostringstream oss;
oss << d;
std::string s = oss.str();

This should convert to a managed string however..

double d = 123.45
String^ s = System::Convert::ToString(d);
link|flag
vote up 0 vote down

He said "managed string". Stop talking about char*s or std::strings, and stop downvoting me for actually trying to do something with managed strings.

link|flag
Yeah, I misread the original question, just read it as convert double to string. Most of my work is with C# not C++, my edit should work though right? – Scott Nichols Sep 19 '08 at 16:45
Oh, yeah, that looks like it should work. – DrPizza Sep 19 '08 at 16:50
vote up -1 vote down

If you want a standard char* string, you can use sprintf. You just need to make sure the char* is sufficiently large.

double d = 123.45;
char str[40];
sprintf(str, "%f", d);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.