2013-08-12

Path.Combine could be very useful

In winfrom program if you want to get a folder path name "Process" under exectue application folder.
you can use this function => Path.Combine(Application.StartupPath, "Process")

Please DON'T put "\" Like this => Path.Combine(Application.StartupPath, "\Process")

You will only get string "\Process".

0 comments: