LaunchCodeEducation / csharp-web-dev-curriculum

Hugo version of C# Unit 2
http://education.launchcode.org/csharp-web-dev-curriculum/
1 stars 5 forks source link

C# Self-Assessment 1 Guide Incorrect Answer #84

Open matthewcreek opened 3 months ago

matthewcreek commented 3 months ago

Relevant link

Text states: "11. An abstract class is marked with the abstract keyword, which means it can not be instantiated (i.e. you can't create an object from the class). Abstracts are used to share behavior across classes when the base class should not be extended."

Abstract classes must be extended for child classes to inherit properties/methods.

Suggested change: Remove second sentence