如何判断应用程序是在 32 位还是 64 位模式下运行?
我有一个 C# 项目,目标平台设置为“任何 CPU”。 据我了解,该应用程序将定期从 MSIL 编译为 32 位 Windows (x86) 和 64 位适用于 64 位 Windows。是否可以显示 在运行时它以什么模式运行?
提前致谢。
I have a C# project with target platform set to "Any CPU".
As I understand, the app will be compiled from MSIL to 32-bit on regular
Windows (x86) and 64-bit for 64-bit Windows. Is it possible to show
at runtime what mode it is running in ?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是一些方法:
http://rongchaua.net /blog/c-如何确定处理器-64位或32位/
Here are some of the ways :
http://rongchaua.net/blog/c-how-to-determine-processor-64-bit-or-32-bit/