Title is clear: how can I change a value in C# depending on destination architecture? In particular, I want to change a string depending on x86 or x64. Many Thanks!
Edit: I need to check if an x64 Office version is installed if my application is x64 too.
Environment.Is64BitProcess
might be useful.Environment.Is64BitProcess
works. I didn't know there were such a simple possibility to "read" that. Thank you again.