Asynchronous message passing in .NET
问题 I am looking for a simple .NET library that implements a concept of async message passing similar to Erlang OTP platform. So far, I have only found RetLang to be somewhat similar, but It seems to be abandoned, and It only supports message passing within one process. 回答1: You can try with MSMQ .you can use for single or a group of messages you want to put in the queue and read from it later asynchronously. :) 回答2: In my opinion the easiest way to do this in .net (aside from F# ;) ) is the TPL