1
Reply

When we are using the combination of Inheritance and interfaces, in what order we have to use them and what separator is used?

M.Nagendra Naidu

M.Nagendra Naidu

10y
1.4k
0
Reply

    The base class always comes first followed by the interfaces (in any order) separated by commas.For example:class MyClass : MyBaseClass, IFace, IFace2 {// code }