Teacher starts the discussion: Welcome to the final part of the object-oriented programming in C#.Let’s review the core principles that we already covered in this book.
- Classes and objects
- Polymorphism
- Abstraction
- Encapsulation
- Inheritance
We can add two more.
- Message passing
- Dynamic binding
Quiz
Can you recall how these topics are covered with basic building blocks of C#?
Answers
- Class and objects: Throughout the book, in almost every example, we have used different types of classes and objects. In the examples of static classes, we did not create objects. ...