Home »
.Net »
C# Programs
C# program to check whether running process is 64-bit process or not using Environment class
Here, we are going to learn how to check whether running process is 64-bit process or not using Environment class in C#.Net?
Submitted by Nidhi, on April 22, 2021
To check whether the running process is a 64-Bit process or not using the Environment class – we use the Is64BitProcess property. This property returns a boolean value, if the current process is a 64-bit process then it returns true, otherwise it returns false.
Syntax:
bool Environment.Is64BitProcess
Program:
The source code to check whether running process is 64-bit process or not using Environment class is given below. The given program is compiled and executed successfully.
using System;
class Sample
{
//Entry point of Program
static public void Main()
{
bool isBit64Process = false;
isBit64Process = Environment.Is64BitProcess;
if (isBit64Process == true)
Console.WriteLine("Current Process is 64 bit process");
else
Console.WriteLine("Current Process is not 64 bit process");
}
}
Output:
Current Process is not 64 bit process
Press any key to continue . . .
C# Environment Class Programs »