Hmmm.... I'm honestly not aware of obfuscation issues with enums; I will have to prepare a test case to investigate.
It would help if you could tell me what obfuscation tool you are using. It would also help to see how you are specifying the default value (i.e. the property definition).
Note that it only really considers [ProtoEnum] in the case of enums (the [ProtoContract] can be used to give it a name, but this isn't used unless you are generating .proto files, which is very unlikely) - but I don't expect it to impact anything in this case (this is used to change the value "on the wire" to different values than are in .NET). As for examples; I confess I'm behind on the documentation - but the enum test cases here show typical usage.
I've logged this as Issue 59; if you could let me know the details above (either here, or e-mail me - see my profile), I'll try to investigate.
(if you didn't know, I'm the author of protobuf-net)
I tried the following (using .NET Reactor) and it worked fine... the implicit default of zero on enum values is the most likely suspect. Can you supply a test-case that shows it failing?
using System;
using ProtoBuf;
[ProtoContract]
class Foo {
static void Main() {
Foo foo = new Foo { Bar = MyEnum.B };
Console.WriteLine(foo.Bar);
Foo clone = Serializer.DeepClone(foo);
Console.WriteLine(clone.Bar); // Expect "B"
}
[ProtoMember(1)]
public MyEnum Bar { get; set; }
}
enum MyEnum { A, B, C }
