/Test/Resources/cs/Interfaces.cs
C# | 22 lines | 16 code | 6 blank | 0 comment | 0 complexity | 5f62f07a9fa28f1750d3dc36d713f0f1 MD5 | raw file
1using System; 2 3interface IFoo {} 4interface IBar : IFoo {} 5 6abstract class Bar : IBar {} 7 8interface IBingo { 9 void Foo (); 10 void Bar (); 11} 12 13class Bingo : IBingo { 14 15 void IBingo.Foo () 16 { 17 } 18 19 void IBingo.Bar () 20 { 21 } 22}