I m trying to configure NanoMessageBus just to "set and forget" send a message to MSMQ. I can t seem to configure a send-only endpoint with NanoMessageBus. A UoW or TransactionScope is really un-necessary for me in this case. Any thoughts?
As a learning experience I recently tried implementing Quicksort with 3 way partitioning in C#. Apart from needing to add an extra range check on the left/right variables before the recursive call, ...