fork download
  1. using System;
  2.  
  3. namespace ConsoleApplication14
  4. {
  5. delegate bool askUser(string question, Action<string> action, out int age);
  6.  
  7. class Program
  8. {
  9. static bool AskUser(string questionText, Action<string> tellUser, out int age)
  10. {
  11. age = 0;
  12. return false;
  13. }
  14.  
  15. static public void Main()
  16. {
  17. askUser f = AskUser;
  18. }
  19. }
  20. }
Success #stdin #stdout 0s 29016KB
stdin
Standard input is empty
stdout
Standard output is empty