/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

  1. using System;
  2. interface IFoo {}
  3. interface IBar : IFoo {}
  4. abstract class Bar : IBar {}
  5. interface IBingo {
  6. void Foo ();
  7. void Bar ();
  8. }
  9. class Bingo : IBingo {
  10. void IBingo.Foo ()
  11. {
  12. }
  13. void IBingo.Bar ()
  14. {
  15. }
  16. }