Wizard
Wizard
CC#
Created by justroland on 4/20/2025 in #help
✅ Abstract Class vs Interface
And also interface can do multiple inheritance, but abstract class cannot.
15 replies
CC#
Created by justroland on 4/20/2025 in #help
✅ Abstract Class vs Interface
Abstract Classes are used to share behaviours and states. Methods in abstract classes always have a default implement. Interfaces are just include declarations without implementation. Classes who inherit interface should implement all members by themselves.
15 replies