I have built the standard address book tutorial that comes with protobuf-csharp-port and my code is as follows:
Can c# application settings be serialized in a format besides XML? I can\'t find anything which would support the theory that one can.Specifically, the format I\'m trying to save in is the protocol bu
I\'m using protobuf-net (thanks Marc :) ) to serialize my object model, but I want the object model not to be visible outside my assembly (specifically, I want it to be internal).
I have serialized a l开发者_StackOverflow中文版ist of objects with protobuf-net. Theoretically, the .bin file can contain millions of objects.
in protobuf-net is it possible to partially deserialize a message based on a base type? In my system I have an inheritance hierarchy where every message inherits from a MessageBase. The MessageBase
in the example below how do i get the length number using PrefixStyle wit开发者_开发知识库h ProtoBuf-net?
Ok, I have the following code that used to work but now it does not. The only thing that changed is now I\'m using VS2010 and .NET4
I have a system built around protobuf.net, the system exposes an abstract class (foo) which I expect the end user to implement. The abstract class is serialisable by protobuf.net. Currently, when I tr
I have below class :- [Serializable] [DataContract(Name = \"StateValueWrapper\")] public class StateValueWrapper
I am using protobuf-net in one of our projects to serialize/deserialize a large set of h开发者_JS百科omogeneous objects. It is working quite well and the speed is fantastic. Just have one question tho