fork download
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace ConsoleApplication1
  7. {
  8. class Program
  9. {
  10. static void Main(string[] args)
  11. {
  12. Console.WriteLine(System.Reflection.Assembly.GetEntryAssembly().Location);
  13. Console.WriteLine(System.IO.Path.GetFullPath("../test.wav"));
  14. Console.WriteLine(System.IO.Path.GetFullPath("../../test.wav"));
  15. Console.WriteLine(System.IO.Path.GetFullPath("../../sounds/test.wav"));
  16. Console.ReadLine();
  17. }
  18. }
  19. }
  20.  
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty