Abstract class instantiation
ID | STAT-25 |
Title | Do not attempt to instantiate abstract classes. |
Priority | Mandatory |
Severity level | 1 |
Description | Do not attempt to instantiate abstract classes because this will result in an error. |
Rationale | Only concrete classes can be instantiated. If any of the methods or properties are abstract, the entire class is considered abstract. |