✅ Multiple inheritance question
I have a partial class webform that is inheriting a base page class. Inside it there are multiple references to base methods.
I am required to make a similar one with ever so slightly different functionality that has to be in a separate aspx.
The question is can I use Multiple inheritance to avoid copy pasting the code over into the new one and making the changes? Is it possible to just inherit the partial and somehow access the base methods required for it to function?
I am required to make a similar one with ever so slightly different functionality that has to be in a separate aspx.
The question is can I use Multiple inheritance to avoid copy pasting the code over into the new one and making the changes? Is it possible to just inherit the partial and somehow access the base methods required for it to function?