94b2861243
Former-commit-id: 5f9c6ae75f295e057a7d2971f3a6df4656fa8850
23 lines
219 B
C#
23 lines
219 B
C#
using System;
|
|
|
|
interface IFoo {}
|
|
interface IBar : IFoo {}
|
|
|
|
abstract class Bar : IBar {}
|
|
|
|
interface IBingo {
|
|
void Foo ();
|
|
void Bar ();
|
|
}
|
|
|
|
class Bingo : IBingo {
|
|
|
|
void IBingo.Foo ()
|
|
{
|
|
}
|
|
|
|
void IBingo.Bar ()
|
|
{
|
|
}
|
|
}
|