As a programmer, what do I need to worry about when moving to 64-bit windows?

后端 未结 8 1516
小鲜肉
小鲜肉 2020-12-02 07:46

Most of my recent programming has been on 32-bit Windows using C/C++/C#/VB6 . Lately, my customers are asking if my code will run on 64-bit Windows.

I\'m wondering w

8条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-02 08:17

    It might be easier to migrate .NET code if you have 100% "type safe managed code". You can just copy it to the 64-bit platform and run it successfully under the 64-bit CLR. Check this MSDN link on migrating 32-bit Managed code to 64-bit.

    Btw, hanselman blogged about the topic recently.

提交回复
热议问题