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

cs1729-4.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3dbebd6535e6266730d0eab8209d20bededf4c59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// CS1729: The type `IgnoreAttribute' does not contain a constructor that takes `0' arguments
// Line: 14

using System;

public class IgnoreAttribute : Attribute {

        public IgnoreAttribute (String name) { }
}

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