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
[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git]
/
mcs
/
errors
/
cs1501-16.cs
blob
4dcbe3efa5936bfe13a2a26bd4613c2827fc2ade
1
// CS1501: No overload for method `Block' takes `2' arguments
2
// Line: 12
3
4
class
X
5
{
6
public static void
Block
(
object
type
,
object
variables
,
params object
[]
expressions
)
7
{
8
}
9
10
public static void
Main
()
11
{
12
Block
(
variables
:
null
,
expressions
:
null
);
13
}
14
}