repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2007-03-19 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs1501-4.cs
blob
d8ec5e0cf55302badd8779ac6259235449d11805
1
// cs1501-4.cs : No overload for method `IgnoreAttribute' takes `0' arguments
2
// Line: 14
3
4
using
System
;
5
6
public class
IgnoreAttribute
:
Attribute
{
7
8
public
IgnoreAttribute
(
String name
)
{ }
9
}
10
11
class
C
{
12
13
[
Ignore
]
14
public void
Method
()
15
{
16
}
17
}