fork(1) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. Foo.MyStaticMethod();
  8. }
  9.  
  10. public class BusinessObject
  11. {
  12. public static void MyStaticMethod()
  13. {
  14. Console.WriteLine("BusinessObject.MyStaticMethod");
  15. }
  16. }
  17.  
  18. public class Foo : BusinessObject { }
  19. }
Success #stdin #stdout 0.02s 33752KB
stdin
Standard input is empty
stdout
BusinessObject.MyStaticMethod