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-11-12 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0019-33.cs
blob
e338b79cb1bbdb026d1030b1e851844bb5c341be
1
// CS0019: Operator `+' cannot be applied to operands of type `string' and `method group'
2
// Line: 10
3
4
using
System
;
5
6
public class
Test
7
{
8
public static void
Main
()
9
{
10
Console
.
WriteLine
(
"+++"
+
Main
);
11
}
12
}