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

cs1501-4.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d8ec5e0cf55302badd8779ac6259235449d11805 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// cs1501-4.cs : No overload for method `IgnoreAttribute' takes `0' arguments
// Line: 14

using System;

public class IgnoreAttribute : Attribute {

        public IgnoreAttribute (String name) { }
}

class C {
        
	[Ignore]
	public void Method ()
	{
	}
}