How to avoid disposing SubscriberSocket
问题 This implementation is bad since it will end up disposing the SubscriberSocket when the first subscription terminates. When I run it, nothing seems to publish. [This uses Rx 3.0.0] How to modify Receive function to fix this problem? using System; using System.Threading; using System.Threading.Tasks; using System.Collections.Generic; using NetMQ; using NetMQ.Sockets; using System.Reactive.Linq; namespace App1 { class MainClass { // publisher for testing, should be an external data publisher in