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
/
cs0674.cs
blob
d262fb108180a1b52e0f996edb8d658139ac7e18
1
// cs0674.cs: Do not use `System.ParamArrayAttribute'. Use the `params' keyword instead
2
// Line: 8
3
4
using
System
;
5
6
public class
X
7
{
8
public void
Error
([
ParamArray
]
int
args
)
9
{
10
}
11
12
}