0

Whats the best resource to look at for when migrating dotnet applications from 32bit to 64bit.


SIMILAR QUESTION

Are there any considerations needed to be taken running your .net program on x64 vs x86?

Cœur
  • 37,241
  • 25
  • 195
  • 267
leora
  • 188,729
  • 360
  • 878
  • 1,366

1 Answers1

3
  • This MSDN article is useful.
  • This blog has some good .NET 64-bit information.
  • Run the built-in or standalone FxCop and fix all its 64-bit warnings, especially around P/Invoke.
  • EDIT: Be careful if you use IntPtr in your code, or call into an x86 compiled assembly.

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

HTTP 410
  • 17,300
  • 12
  • 76
  • 127