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
2009-02-27 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs1501-3.cs
blob
939bb743d6e0208619d8262af8e9e089dc9d2020
1
// CS1501: No overload for method `LogFileLine' takes `1' arguments
2
// Line: 12
3
4
class
C
5
{
6
static void
LogFileLine
(
string
file
,
string
msg
,
params object
[]
args
)
7
{
8
}
9
10
public static void
Main
()
11
{
12
LogFileLine
(
"aaa"
);
13
}
14
}