Adam Lee
Adam Lee

Reputation: 25778

Is it compatible for VC redistributed package 2005, 2008, 2010

what does the redistributed package contains? Can 2005, 2008, 2010 redistributed packages coexist on the same system?

Upvotes: 0

Views: 173

Answers (1)

the_mandrill
the_mandrill

Reputation: 30862

The redistributable packages contain the C++ runtime routines for each version of Visual Studio. They can coexist as the Windows Side-by-Side (SxS) support takes care of that, which means that you can have many versions of (say) VS2008 runtimes. See the list here for a summary of some of the different versions.

Upvotes: 1

Related Questions