I believe the architecture type (x86 vs x64) is abstracted away for you when making .Net programs, but are there any other considerations that can cause problems?
|
|
Beware of third-party COM libraries or third party .NET libraries that secretly make win32 calls. That's where we had our biggest headaches. |
||
|
|
|
In my experience porting an Asp.NET application was basically flawless. Run on 32 bit machine and on 64 bit and no problem happens, beside having more memory available. This happens because a lot of the issues already mentioned (registry, threading and so on) have been managed by Asp.NET and you need to properly fix them to run in the Asp.NET environment. Client side (windows form) the same happened but it if you've used some "unsafe" APIs to get special folders or registry access then some problem can happen, as already pointed. Regards Massimo |
||
|
|
|
|
MSDN had put up a little paper regarding issues of porting 32-bit applications over to 64-bit execution environment. http://msdn.microsoft.com/en-us/library/ms973190.aspx Two other bloggers had previously wrote about 64-bit development when they were working in the CLR team |
|||
|
|
|
|
|
||
|
|
|
|
This article has a lot of good issues to be aware of: http://osnews.com/story/20330/Windows_x64_Watch_List Personally, my boss has a 64-bit Vista computer, and I program in a 32-bit mode. We've run into the following issues:
|
||
|
|
|
|
From the MSDN doco, among other considerations:
|
||
|
|
|
|
x64 will allow you to address more memory, but given the same code, it will use more memory than x86. |
||
|
|
