linux-packaging-mono/mcs/tests/test-anon-51.cs

15 lines
220 B
C#
Raw Normal View History

using System;
public delegate void FooDelegate ();
public class X {
public static readonly FooDelegate Print = delegate {
Console.WriteLine ("delegate!");
};
public static void Main ()
{
Print ();
}
}