注意NET某些类型在不同平台上的长度 NET中用句柄用得最多的是在DLLIMPORT中,混用int与intptr可能会导致某些API声明在X64平台中表现不正常,如 [DllImport("Kernel32")] public static extern IntPtr LoadLibrary(string funcname); [DllImport("Kernel32")] public static extern long GetProcAddress(lon…
先上代码及实例 RegistryKey rsg = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Macromedia\FlashPaper Printer\2\Installation\", false);为什么返回值是NULL L 原因其实是在64位电脑上跑32位程序,以上代码读取为空值,32位电脑读注册表使用OpenSubKey是正确的 解决方法: I will show you how to get connecting string…
方法一. int转IntPtr int i = 12; IntPtr p = new IntPtr(i); IntPtr转int int myi = (int)p; MessageBox.Show(myi.ToString()); 方法二. int转IntPtr int i = 12; IntPtr p =(IntPtr)i IntPtr转int int myi = (int)p; MessageBox.Show(m…