Пример #1
0
        public ZmqContext()
        {
            Handle = ZmqNative.ctx_new();

            if (Handle == IntPtr.Zero)
            {
                ZmqUtil.ThrowLastError("Could not create ZMQ context");
            }
        }