using System;using System.Diagnostics;using System.IO;
public static void Main()
string path = @"C:\test.txt",filename = "";
Stopwatch x1 = new Stopwatch();
filename = path.Substring(path.LastIndexOf("\\") + 1);
Console.Write("x1 "+filename+" "); Console.WriteLine(x1.ElapsedTicks+" ticks");
Stopwatch x2 = new Stopwatch();
filename = filename = Path.GetFileName(path);
Console.Write("x2 "+filename+" "); Console.WriteLine(x2.ElapsedTicks+" ticks");
Stopwatch x3 = new Stopwatch();
var arr = path.ToCharArray();
string rpath = new string(arr);
int pos = rpath.IndexOf('\\');
filename = rpath.Substring(0, pos);
arr = filename.ToCharArray();
filename = new string(arr);
Console.Write("x3 "+filename+" "); Console.WriteLine(x3.ElapsedTicks+" ticks");
Stopwatch x4 = new Stopwatch();
filename = path.Substring(path.LastIndexOf('\\') + 1);
Console.Write("x4 "+filename+" "); Console.WriteLine(x4.ElapsedTicks+" ticks");