i have a base class which decorated with [ProtoContract(ImplicitFields = ImplicitFields.AllFields)]
in order to be able to serialize a derived class , do i only need to add ProtoInclude? as the derived class fields are not being serialize – does the inheritance works only with Protomember?
Protobuf doesn’t fully support inheritance you need to do a little decoration in your base class.
for derived classes that only provide properties via the Base class.