Lecture overview -- Keyboard shortcut: 'u'  Previous page: Serialization -- Keyboard shortcut: 'p'  Next page: Custom 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 32 : 40
Object-oriented Programming in C#
Input and Output Classes
Examples of Serialization in C#

Straightforward serialization of Person and Date objects

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


/user/normark/oop-csharp-1/sources/c-sharp/serialization/person-1/date.csThe Date class - Serializable.


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


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


Go to exerciseSerializing one of your own classes
Go to exerciseSerializing with an XML formatter