/wine-mono-0.0.4/mono/mcs/errors/cs0067.cs

# · C# · 17 lines · 9 code · 5 blank · 3 comment · 0 complexity · d43419fb6ceb8502ea14e5ac3e1f28df MD5 · raw file

  1. // CS0067: The event `Foo.OnFoo' is never used
  2. // Line: 12
  3. // Compiler options: -warnaserror -warn:4
  4. using System;
  5. class ErrorCS0067 {
  6. public delegate void FooHandler ();
  7. }
  8. class Foo {
  9. private event ErrorCS0067.FooHandler OnFoo;
  10. public static void Main () {
  11. }
  12. }