fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. static void Foo() {}
  6.  
  7. void Bar()
  8. {
  9. Foo();
  10. //this.Foo();
  11. }
  12.  
  13. public static void Main()
  14. {
  15. var t = new Test();
  16. //t.Foo();
  17. t.Bar();
  18. }
  19. }
Success #stdin #stdout 0.02s 22288KB
stdin
Standard input is empty
stdout
Standard output is empty