Implementation Inheritance

The class always must come first—before interfaces

public class MyDerivedClass: MyBaseClass, IInterface1, IInterface2
{
// coding
}

你可能感兴趣的:(Implementation Inheritance)