I am experimenting with nanomsg.
Is it possible to connect to a nanomsg socket from a client using .NET's Socket class or for that matter, any other socket library other than another nanomsg client?
Are there any online tutorials and/or examples about doing this?
For example, using nanocat, bind a socket to a port. Then from C# .NET attempt to connect to the socket:
Socket s = new Socket(AddressFamily.InterNetwork, SocketType.Raw, ProtocolType.Raw);
s.Connect("127.0.0.1", 1234);