It depends on the exact scenario Are you already using protocol buffers for other platforms? Working from .proto?
There are several C# implementations, with different levels of VS integration. The two I would mainly think of is Jon Skeet's C# port ( http://code.google.com/p/protobuf-csharp-port/) and my own offering: protobuf-net (http://code.google.com/p/protobuf-net/). Jon's port exposes an almost identical API to the Java version (and IIRC has very similar tooling); protobuf-net looks at it the other way around: it is .NET centric *first*, with .proto support secondary - as such, with protobuf-net you don't strictly *need* a .proto *at all*. Of course, you *can* use a .proto (an msi for VS integration is on the protobuf-net home page, with a write-up here: http://marcgravell.blogspot.com/2009/07/protobuf-net-now-with-added-orcas.html) - but if I'm honest I *personally* mainly use it *without* .proto, as I am usually just talking .NET to .NET, and I just want to serialize stuff. Jon may be offer to give more specific pointers about his version. Marc Gravell On 9 December 2010 14:06, vinu <[email protected]> wrote: > Sir, > > > Any body please send me any example program and how to use protocol > buffers in c#.net visual stduio > > -- > You received this message because you are subscribed to the Google Groups > "Protocol Buffers" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]<protobuf%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/protobuf?hl=en. > > -- Regards, Marc -- You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/protobuf?hl=en.
