-1

I want to get windows system type whether it is 32 bit or 64 bit?

is it applicable ??

if yes please tell me how?

gunr2171
  • 16,104
  • 25
  • 61
  • 88
Amr Deif
  • 103
  • 1
  • 14

1 Answers1

1

if you are using .NET Framework 4.0 you can use Environment class to get the operating system info

Try This:

bool is64bit = Environment.Is64BitOperatingSystem;
Steven V
  • 16,357
  • 3
  • 63
  • 76
Sudhakar Tillapudi
  • 25,935
  • 5
  • 37
  • 67