You've already forked linux-packaging-mono
12 lines
161 B
C#
12 lines
161 B
C#
![]() |
// CS1660: Cannot convert `anonymous method' to non-delegate type `int'
|
||
|
// Line: 9
|
||
|
|
||
|
using System;
|
||
|
|
||
|
class X {
|
||
|
static void Main ()
|
||
|
{
|
||
|
int o = delegate {};
|
||
|
}
|
||
|
}
|