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.
我只对进程内通信感兴趣。如何避免序列化消息并仅通过引用发送它们?
UPD
这个问题的另一方面:如何将 C# 引用转换为 byte[] 和 byte[] 到 C# 引用?
消息队列系统是为进程间通信而设计的。对于应用程序内的通信,有几个选项。对于 Producer-Consumer 类问题,看一下BlockingCollection类。
这是一个概述。