vote up 1 vote down star

Can I distinguish between compiled application from VS2008 Professional and Express?

flag

38% accept rate

2 Answers

vote up 4 vote down check

No. The same compiler is used by both. The main difference is in the tool set included with Visual Studio, not the compiler.

link|flag
+1. Beat me to the punch. – David Stratton Oct 3 at 22:28
vote up 1 vote down

No. They both compile down to the same MSIL. You are free to make, sell, and distribute applications written in the Express versions. The difference is not in what the products produce, but in the tools that you have at your disposal. The Professional version just gives you more bells and whistles, and makes development easier.

link|flag
Visual Studio doesn't always compile into MSIL (ie: if you're using native C++), but otherwise, your answer is true. – Reed Copsey Oct 3 at 22:28
Good point. I hadn't thought of that. – David Stratton Oct 3 at 22:29

Your Answer

Get an OpenID
or

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