a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
14 lines
206 B
C#
14 lines
206 B
C#
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)
|
|
{
|
|
}
|
|
}
|