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

cs0066-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f11704847c0fae031d5bc1a246b1914f6ed126bc (plain)
1
2
3
4
5
6
// cs0066.cs : 'Sample.reference' : event must be of a delegate type 
// Line: 5

public class Sample {        
	event object reference;
}