user3566608
user3566608

Reputation: 353

c++ visual studio 2012 -> 2010

At the home I am using visual studio 2012 and when I tried 2010 with my code at school, many things didn't work like std::to_wstring() only viable arguments where long double, and at home I am using it to convert an int to a wstring.

My Question is, if I only take my .exe to the school where only 2010 is installed, will it work?

Upvotes: 1

Views: 54

Answers (1)

Jerry YY Rain
Jerry YY Rain

Reputation: 4392

it can work.
you can take my.exe and related version vc_redist.exe to school installed only 2010.

The Microsoft Visual C++ 2012 Redistributable Package (x86) installs runtime components of Visual C++ Libraries required to run applications developed with Visual C++ on a computer that does not have Visual C++ 2012 installed.

Upvotes: 2

Related Questions