I'm trying to join a windows path with a relative path using Path.Combine
However, Path.Combine(@"C:\blah\",@"..\bling") return "C:\blah..\bling" instead of "C:\bling\"
Does anyone know how to accomplish this without writing my own relative path resolver (which shouldn't be too hard)?
I know it seems stupid to ask for code to simple things (like I have with other questions), but I;d feel stupider if I didn't find out if there was a "proper" framework way to do things first.