Program.bf 344 B

12345678910111213141516171819202122
  1. using System;
  2. namespace MemProfiler
  3. {
  4. class Program
  5. {
  6. public static int32 Main(String[] args)
  7. {
  8. String commandLine = scope String();
  9. commandLine.JoinInto(" ", args);
  10. MPApp mApp = new MPApp();
  11. mApp.ParseCommandLine(commandLine);
  12. mApp.Init();
  13. mApp.Run();
  14. mApp.Shutdown();
  15. delete mApp;
  16. return 0;
  17. }
  18. }
  19. }