-1

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.

Janiek Buysrogge
  • 1,244
  • 10
  • 15
  • 1
    possible duplicate of [C# Directive to indicate 32-bit or 64-bit build](http://stackoverflow.com/questions/1076414/c-directive-to-indicate-32-bit-or-64-bit-build) – kennytm Jul 23 '10 at 09:19

1 Answers1

-1

Here are some of the ways : http://rongchaua.net/blog/c-how-to-determine-processor-64-bit-or-32-bit/

gillyb
  • 8,760
  • 8
  • 53
  • 80