Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以跨 .NET 应用程序共享内存空间中的自定义对象模型,而无需在每个正常运行的应用程序的内存范围内复制工作内存?
这并非不可能,但非常困难。
可以在 CLR 分析器的私有版本下运行您的程序。注入进程的分析器 DLL 随时知道对象的确切位置。然后不同的进程可以使用本机代码共享数据。