Lecture overview -- Keyboard shortcut: 'u'  Previous page: Example of associating Person with BankAccount -- Keyboard shortcut: 'p'  Next page: Methods [Section] -- Keyboard shortcut: 'n'  Lecture notes - all slides together  Annotated slide -- Keyboard shortcut: 't'  Textbook -- Keyboard shortcut: 'v'  Alphabetic index  Help page about these notes  Course home    Data Access, Properties, and Methods - slide 16 : 29

Summary of indexers in C#
 modifiers return-type this[formal-parameter-list]
  get {body-of-get}
  set {body-of-set}
}