Lecture overview -- Keyboard shortcut: 'u'  Previous page: Tool support: Other possibilities -- Keyboard shortcut: 'p'  Next page: Conclusion - Documentation of C# Programs -- 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 10 : 13
Object-oriented Programming in C#
Documentation of Object-oriented Programs
Another documentation example in C#

Documentation of class BankAccount and its three subclasses

 

/user/normark/oop-csharp-1/sources/c-sharp/interface-documentation/bank-account-inheritance/bank-account.csThe base class BankAccount.


/user/normark/oop-csharp-1/sources/c-sharp/interface-documentation/bank-account-inheritance/check-account.csThe class CheckAccount.


/user/normark/oop-csharp-1/sources/c-sharp/interface-documentation/bank-account-inheritance/savings-account.csThe class SavingsAccount.


/user/normark/oop-csharp-1/sources/c-sharp/interface-documentation/bank-account-inheritance/lottery-account.csThe class LotteryAccount.


/user/normark/oop-csharp-1/sources/c-sharp/interface-documentation/bank-account-inheritance/lottery.csThe singleton class Lottery - used by LotteryAccount.


 

Go to exerciseDocumentation of class Set