I have C# class definition
MyViewModelClass: INotifyPropertyChanged, MyAbstractBaseForVMClass
It won’t compile. Gives and error at the start of MyAbstractBaseForVMClass literal:
Interface definition is expected.
Can I not realize an interface, and inherit from an abstract class at the same time?
No you can. Just reverse them.
Interfaces always come after classes.