Protobuf-net: Using Hidden Members does not work
问题 Using types with hidden fields leads to an "Unable to determine member" Exception (V2 via RuntimeTypeModel without any attributes). Removing the Length check in this line in MetaType.cs solves the problem for this special use case. if(members != null && members.Length == 1) mi = members[0]; But I fear there is a reason for the length check, so simply removing it might not be an adequate solution. Using members[0] works in this case, because the hidden base class members go at the end of the