---
title: "How to get our system Process is 64 bit or not?"  
description: "How to get our system Process is 64 bit or not?"  
author: "Anonymous User"  
published: 2013-10-07  
updated: 2013-10-08  
canonical: https://www.mindstick.com/forum/1642/how-to-get-our-system-process-is-64-bit-or-not  
category: "c#"  
tags: ["c#"]  
reading_time: 1 minute  

---

# How to get our system Process is 64 bit or not?

How to get [our system](https://answers.mindstick.com/qa/31991/how-long-does-alcohol-stay-in-our-system) is 64 [bit](https://www.mindstick.com/forum/33411/how-we-tell-programmatically-if-i-m-running-in-64-bit-jvm-or-32-bit-jvm) or not?

## Replies

### Reply by Anonymous User

```
class Program{    static void Main(string[] args)    {         if (Environment.Is64BitProcess)            
Console.Write("Process is 64 bit");         else            
Console.Write("process isn't 64 bit");         Console.ReadKey();    }}
```


---

Original Source: https://www.mindstick.com/forum/1642/how-to-get-our-system-process-is-64-bit-or-not

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
