ryeguy
ryeguy

Reputation: 66851

Lean packet protocol for AS3 and C#?

Is there by chance a lean (meaning not xml or json) packet protocol that is implemented in both actionscript 3 and C#? It would be great if there was one that already had an implementation in both languages. If not, I may have to code one side. That being said, would it be stupid/unsafe to figure out (or find documents of) C#'s serialization specification and then use that so I just have to make an AS3 to C# object encoder?

Upvotes: 1

Views: 576

Answers (1)

Marc Gravell
Marc Gravell

Reputation: 1062770

Protocol Buffers.

Of the C#, protobuf-net and dotnet-protobufs are pretty robust. I haven't tried the AS versions personally.

Marc

Upvotes: 2

Related Questions