Put my tests back, this is used by the compiler people in their day to
[mono.git] / mcs / tests / interfaces.cs
1 interface X {
2
3         // Methods
4         new int IntegerMethod (int a, int b);
5         new int IntegerMethod (int a, string c);
6         new int StringMethod ();
7         int A (string b);
8
9         // Properties
10         new string TheString { get; set; }
11         int TheInt { get; }
12         int TheInt2 { set; }
13         int TheInt3 { set; get; }
14
15         // Events
16         new event int MyEvent;
17         event string MyEvent2;
18
19         // Indexers
20 }
21         
22