64-bit update

What's the best resource to watch when porting dotnet apps from 32 to 64 bit.


A SIMILAR QUESTION

Are there any considerations that need to be taken to run your .net program on x64 vs x86?

0


source to share


1 answer


  • This MSDN article is helpful.
  • This blog has some good 64-bit information on .NET.
  • Run inline or standalone FxCop and fix all of its 64bit warnings, especially around P / Invoke.
  • EDIT: Be careful if you are using IntPtr in your code or calling x86 assembly.


What is it, really. As long as you listen to the FxCop warnings and also recompile your code (to avoid the 32-bit WOW layer), you should be fine.

+3


source







All Articles