14 lines
206 B
C#
Raw Normal View History

public class TestClass
{
delegate void OneDelegate (int i);
public static void Main()
{
OneDelegate d = new OneDelegate (TestMethod);
d.Invoke (1);
}
public static void TestMethod (int i)
{
}
}