blob: e338b79cb1bbdb026d1030b1e851844bb5c341be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// CS0019: Operator `+' cannot be applied to operands of type `string' and `method group'
// Line: 10
using System;
public class Test
{
public static void Main ()
{
Console.WriteLine ("+++" + Main);
}
}
|