Linked Questions

-2 votes
1 answer
109 views

Possible Duplicate: Identifying the CPU architecture type using C# my program is using diffrent assemblies for its final part.The problem is that amd and intelx64 assemblies are not fully ...
Andras Lelovics's user avatar
34 votes
9 answers
62k views

I am trying to retrieve the environment variable to detect whether the system is 32 or 64 bit. But on 64 bit server the environment variable %processor_architecture% is returning x86 instead of AMD64. ...
alice7's user avatar
  • 3,890
13 votes
7 answers
13k views

Using C#, I would like to create a method that retunrs whether my machine is 64 or 32-bit. Is there anybody who knows how to do that?
Slt's user avatar
  • 179
10 votes
7 answers
2k views

I need a way for my .Net Winform app to detect if my app is opened on a Laptop or a Workstation. I have looked at Environment and SystemInformation but to no avail. Would WMI do the trick? Thanks ...
Refracted Paladin's user avatar
10 votes
2 answers
10k views

I created a C# .NET console application that can run in Windows 10 x86, x64 and ARM64 (via emulator layer). I would like to know how to detect that the application is running in those platforms. I ...
SuperJMN's user avatar
  • 14.1k
1 vote
3 answers
2k views

There is an enum of all supported processor architectures here: http://msdn.microsoft.com/en-us/library/system.reflection.processorarchitecture.aspx Is there any way to determine which one ...
Joshua's user avatar
  • 43.6k
6 votes
1 answer
911 views

I have a universal app that uses PlayReady DRM protected videos. The problem with PlayReady is that it only work if the application build architecture matches the CPU architecture (e.g: ARM build on ...
Igor Kulman's user avatar
  • 16.4k
1 vote
3 answers
718 views

I'm trying to get the output of uname -r in C# in .NET Core 2.2 running on Ubuntu 18.04. I'm writing this with performance in mind, so have been trying to use a P/Invoke to achieve it. The uname(2) ...
Rob Holt's user avatar
0 votes
1 answer
92 views

I have library - SQLiteCrypt, its two folder x86 and x64. In every folder file - System.Data.SQLite.dll Project - AnyCPU I can add reference only one time one dll for x86 project or for x64 project, ...
Архипов Владимир's user avatar
0 votes
1 answer
92 views

<?if $(var.Platform) = x64 ?> <Launch Condition="VersionNT64 AND (NOT NativeMachine = 43620)" Message="Please run 32-bit installer." /> <?elseif $(var.Platform) = ...
shashank-reddy's user avatar