Hi
I'm testing XML Serialization in my class, but i noticed that the ID number didn't get saved when i ran the program.
So i was looking around and modifying a few things but nothing worked, then i saw that all fields except ID had both get and set properties. So i added a set; property to my ID number and poof it worked. The question is, does it have to be set; and get; function on all my properties for XML Serialization to work?
I don't want the ID number to be modified after the object has been created (its automatically generated).