3
我的C#編譯程序時AnyCPU選項,我使用的P/Invoke調用本地的API是這樣的:C#AnyCPU和Read/WriteProcessMemory的
[DllImport("kernel32.dll", SetLastError = true)]
static extern bool WriteProcessMemory(IntPtr hProcess, IntPtr lpBaseAddress, byte[] lpBuffer, uint nSize, out UIntPtr lpNumberOfBytesWritten);
我guestion是,可以讀取和寫入我的C#程序到32位和64位進程,因爲它與anycpu編譯?或會有問題?我問這是因爲我只有32位的操作系統,所以我無法測試它。 Thx