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

cs0102-11.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 641c7335b49f8474f058b4b96f5e9623ea37655c (plain)
1
2
3
4
5
6
7
8
// cs0102.cs: The class 'SampleClass' already contains a definition for 'MyEvent'
// Line: 7

public class SampleClass {
	public delegate void MyEvent ();
        
        public void MyEvent () {}
}