[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0079-4.cs
1 // CS0079: The event `Foo.BaseFoo.Changed' can only appear on the left hand side of `+=' or `-=' operator
2 // Line: 16
3
4 using System;
5
6 namespace Foo
7 {
8         public delegate void VoidHandler ();
9
10         public class BaseFoo
11         {
12                 public extern event VoidHandler Changed;
13
14                 public string Name {
15                         set {
16                                 Changed ();
17                         }
18                 }
19         }
20 }