I changed my base class to abstract for a project and now I\'m receiving the following error:
abstract
Cannot create an instance of the abstract c
You can't create an instance of an abstract class. Think of it as an interface that may contain some implementation logic as well. What would you expect to happen if you called an abstract instance method with no definition?