Lecture overview -- Keyboard shortcut: 'u'  Previous page: Examples of Serialization in C# -- Keyboard shortcut: 'p'  Next page: Considerations about Serialization -- Keyboard shortcut: 'n'  Lecture notes - all slides and notes together  slide -- Keyboard shortcut: 't'  Textbook -- Keyboard shortcut: 'v'  Help page about these notes  Alphabetic index  Course home  Page 33 : 40
Object-oriented Programming in C#
Input and Output Classes
Custom Serialization

The programmer can control the serialization and deserialization

In class Person and Date certain fields are not serialized

/user/normark/oop-csharp-1/sources/c-sharp/serialization/person-4/person.csThe Person class - Serialization control with attributes.


/user/normark/oop-csharp-1/sources/c-sharp/serialization/person-4/date.csThe Date class - Serialization control with attributes .


/user/normark/oop-csharp-1/sources/c-sharp/serialization/person-4/client.csThe Person client class - applies serialization.

Unchanged.

/user/normark/oop-csharp-1/sources/c-sharp/serialization/person-4/outputOutput of the Person client class.