19 lines
325 B
C#
19 lines
325 B
C#
|
using System;
|
||
|
using System.Runtime.InteropServices;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
class X
|
||
|
{
|
||
|
public delegate T ModuleBinder<T> (object o);
|
||
|
|
||
|
public ModuleBinder<TDelegate> CreateMethodUnscoped<TDelegate> ()
|
||
|
{
|
||
|
return delegate (object o) {
|
||
|
return (TDelegate)(object)null;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
public static void Main ()
|
||
|
{ }
|
||
|
}
|