fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public delegate void F(int x);
  6.  
  7. public static void Main()
  8. {
  9. F f = null;
  10. f += x => System.Console.WriteLine("First: {0}", x);
  11. f += x => System.Console.WriteLine("Second: {0}", x);
  12. f(5);
  13. }
  14. }
Success #stdin #stdout 0.03s 36944KB
stdin
Standard input is empty
stdout
First: 5
Second: 5