Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- interface IMyInterface
- {
- void Foo();
- }
- interface IMyInterface2
- {
- void Foo2();
- }
- class MyClassB : IMyInterface
- {
- public virtual void Foo() {...}
- }
- class MyClassA : MyClassB, IMyInterface2
- {
- public override void Foo() {...}
- public override void Foo2() {...}
- }
Add Comment
Please, Sign In to add comment