My colleague is looking for a method in System.IO that will do this:
var path1 = "c:\\temp\\foo\\bar"; var path2 = "..\\..\\foo2\\file.txt"; var path3 = Path.Combine2(path1, path2);
Is there anything in System.IO for this type of combination, or will it have to write its own method? I could not find anything.
Thanks!
source share