Inheritance for Classes
The first thing we want to look at is how to derive a class from another one. C# uses a single syntax for inheritance both from a class or a set of interfaces, which is different from languages like Java, in which two keywords, extends
and implements
, are used. In the following example, we explicitly derive a class from System.Object
:
class Person : Object{ public Person(string name, int age) { Name = name; Age = age; } public string Name { get; private set; } public int Age { get; private set; }}
The preceding code is no different from omitting the colon and base type altogether because Object
is the default base type if left unspecified:
Get C# 5.0 Unleashed now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.