[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / test-anon-28.cs
blob3d192300b48fb50e11f0fa6bc788542db7ad0d41
1 using System;
3 class Delegable {
4 public event EventHandler MyDelegate;
7 class DelegateTest {
8 public static void Main (string[] argv)
10 Console.WriteLine ("Test");
12 Delegable db = new Delegable ();
13 db.MyDelegate += delegate (object o, EventArgs args) {
14 Console.WriteLine ("{0}", argv);
15 Console.WriteLine ("{0}", db);