a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
19 lines
214 B
C#
19 lines
214 B
C#
using System;
|
|
|
|
class C
|
|
{
|
|
delegate int IntDelegate (int a);
|
|
|
|
static int TestInt (int u)
|
|
{
|
|
return 29;
|
|
}
|
|
|
|
public static int Main ()
|
|
{
|
|
var del = new IntDelegate (TestInt);
|
|
del (a : 7);
|
|
|
|
return 0;
|
|
}
|
|
} |