fork download
  1. using System;
  2. using System.IO;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. var s = @"Sprites\/tilesTest.png";
  9. Console.Write(GetStr(s));
  10. }
  11. public static string GetStr(string s) {
  12. return Path.Combine(Path.GetDirectoryName(s), Path.GetFileNameWithoutExtension(s)).Replace(@"\/", "/");
  13. }
  14. }
Success #stdin #stdout 0.03s 23880KB
stdin
Standard input is empty
stdout
Sprites/tilesTest