fork download
  1. using System;
  2.  
  3. namespace Some.Main
  4. {
  5. }
  6.  
  7. namespace SomeLib
  8. {
  9. interface Some
  10. {
  11. }
  12. }
  13.  
  14. namespace ConsoleApplication1
  15. {
  16. using Some.Main;
  17. using SomeLib;
  18.  
  19. class Program
  20. {
  21. static void Main(string[] args)
  22. {
  23. Console.Write("Press enter to continue");
  24. Console.ReadLine();
  25. }
  26. }
  27. }
Success #stdin #stdout 0.03s 36912KB
stdin
Standard input is empty
stdout
Press enter to continue