/Test/Resources/cs/Interfaces.cs
http://github.com/jbevain/cecil · C# · 22 lines · 16 code · 6 blank · 0 comment · 0 complexity · 5f62f07a9fa28f1750d3dc36d713f0f1 MD5 · raw file
- 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 ()
- {
- }
- }