repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-04-01 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0758.cs
blob
ac96db20498f182bdc335f45c15d7a3e50cb4498
1
// CS0758: A partial method declaration and partial method implementation cannot differ on use of `params' modifier
2
// Line: 9
3
4
5
public partial class
C
6
{
7
partial void
Foo
(
int
[]
args
);
8
9
partial void
Foo
(
params int
[]
args
)
10
{
11
}
12
}