Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-509.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3318538eab4f6ca57a7950937052fcbd0372beb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
public delegate void DelegateHandler();

public interface EventInterface 
{
	event DelegateHandler OnEvent;
}

public class BaseClass 
{
	public event DelegateHandler OnEvent;
}

public class ExtendingClass : BaseClass, EventInterface 
{
	public static void Main()
	{
	}
}