Lecture overview -- Keyboard shortcut: 'u'  Previous page: Abstract classes and abstract methods in C# -- Keyboard shortcut: 'p'  Next page: Sealed Classes and Sealed Methods -- 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    Abstract classes, Interfaces, and Patterns - slide 8 : 37

Abstract Properties
Properties and indexers may be abstract in the same way as methods
AbstractPoint.cs
The abstract class Point with four abstract properties.
Point.cs
A non-abstract specialization of class Point (with private polar representation).
Client.cs
Some client class of Point - Similar to a Point client from an earlier lecture.
output
Output from the Some client class of Point.