tags:

views:

197

answers:

2
+1  Q: 

64bit upgrade

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


SIMILAR QUESTION

http://stackoverflow.com/questions/145026/are-there-any-considerations-needed-to-be-taken-running-your-net-program-on-x64

+3  A: 
  • 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.

RoadWarrior
A: 

This link help you about running 64 bit app:
http://stackoverflow.com/questions/8896/memcached-on-windows-x64/499610#499610

lsalamon