本文介绍了是否可以以编程方式检测Visual C ++ 2005 SP1?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有什么方法可以做这样的事情
#if<在Visual C ++ 2005 SP1上运行>
//这里的SP1代码
#else
//这里的其他代码
#endif
Is there some way I can do something like this
#if <running on Visual C++ 2005 SP1>
//SP1 code here
#else
//other code here
#endif
推荐答案
目前我没有看到办法...
但是:你为什么不需要它?
问候
Jochen
Currently I don''t see a way...
But: Why do nou need it?
Greetings
Jochen
_MSC_VER?
_MSC_VER ?
_MSC_VER是1400在这两种情况下...
问候
Jochen
_MSC_VER is "1400" in both cases...
Greetings
Jochen
这篇关于是否可以以编程方式检测Visual C ++ 2005 SP1?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!