Is there a good tutorial or example that shows the combination of protobuf-net and zeromq?

That is a very specific pairing. I would instead focus on two questions: how do I transfer a byte via zeromq? How do I use protobuf with a byte?

The answer to the second is: via MemoryStream either create a new MemoryStream(bytes) (deserialization), or (serialization) create an empty MemoryStream write to it, then call ToArray() I don't know much about zeromq, but most buses make this easy. If it only handles strings, then use Convert. ToBase64String() and Convert.

FromBase64String().

That is a very specific pairing. I would instead focus on two questions: how do I transfer a byte via zeromq? How do I use protobuf with a byte?

The answer to the second is: via MemoryStream; either create a new MemoryStream(bytes) (deserialization), or (serialization) create an empty MemoryStream, write to it, then call ToArray(). I don't know much about zeromq, but most buses make this easy. If it only handles strings, then use Convert.

ToBase64String() and Convert. FromBase64String().

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions