vote up 1 vote down star
  • I am doing Binary Serilization of big nested data structure.
  • Whenever [Serilizable] attribute is added to class, all the members are automatically serialized.
  • I want to specifically select the fields that need to be serialized.
  • As of now i am using [NonSerialized] Attribute for fields to opt out from serilization.

  • Is there any way i can opt out all fields by default and then select only the fields i need, by using some attribute ?

flag

78% accept rate

1 Answer

vote up 1 vote down check

You can control the serialization yourself by implementing ISerializable and writing a serialization constructor. For more information, read this article.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.