To get the system type (32-bit or 64-bit), you can use the Environment
class in C#:
main.cs127 chars3 lines
The Environment.Is64BitOperatingSystem
property returns true
if the operating system is 64-bit, and false
otherwise.
gistlibby LogSnag