fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. static event Action<int> e;
  6.  
  7. static void TestEvent(int i)
  8. {
  9. Console.WriteLine(i);
  10. }
  11.  
  12. public static void Main()
  13. {
  14. e += TestEvent;
  15. e += TestEvent;
  16. e(2);
  17. }
  18. }
Success #stdin #stdout 0.01s 131712KB
stdin
Standard input is empty
stdout
2
2