Lecture overview -- Keyboard shortcut: 'u'  Previous page: Hello World Program -- Keyboard shortcut: 'p'  Next page: Polygon Stuff -- Keyboard shortcut: 'n'  Lecture notes - all slides and notes together  slide -- Keyboard shortcut: 't'  Help page about these notes       Course home  Page 16 : 25
Object-oriented Programming in C#
Extra Stuff
Privacy Leaks - Programs for exercise

/user/normark/oop-csharp-1/sources/c-sharp/privacy-leaks/1/date.csA Mutable Date class.


/user/normark/oop-csharp-1/sources/c-sharp/privacy-leaks/1/person.csA Person class that can return its private birth Date.


/user/normark/oop-csharp-1/sources/c-sharp/privacy-leaks/1/Client.csA client of the Person which modifies the returned birth Date.


/user/normark/oop-csharp-1/sources/c-sharp/privacy-leaks/1/outputThe output of the Person client program.