Lecture overview -- Keyboard shortcut: 'u'  Previous page: Object Initialization via Properties -- Keyboard shortcut: 'p'  Next page: Indexers [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 11 : 29

Summary of properties in C#
 modifiers return-type property-name{
  get {body-of-get}
  set {body-of-set}
}

A C# property will often have the same name as a private data member

The name of the property is capitalized - the name of the data member is not