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
[cominterop] Default to [in] parameter direction when not specified explicitly.
[mono-project.git]
/
mcs
/
errors
/
cs0231-3.cs
blob
02e2884a6ffc2414c35219d69500be220da98ce4
1
// CS0231: A params parameter must be the last parameter in a formal parameter list
2
// Line: 5
3
class
Test
4
{
5
void
Foo
(
int
i
,
params object
[]
o
,
bool
b
) {}
6
}
7