[Mono-devel-list] Guidelines: Application Deployment; Feedback requested.

Kornél Pál kornelpal at hotmail.com
Mon Jun 27 02:09:55 EDT 2005


>   I have written a small document with some guidelines on deploying
> applications, and would like to get people's feedback about what is
> missing and what can be clarified:

>string splash_file = base_directory + Path.PathSeparator + "splash.jpg";

Path.Combine should be used instead because it ensures a lot of things to
combine the two paths correctly (for details look at the source code):

string splash_file = Path.Combine(base_directory, "splash.jpg");

Kornél




More information about the Mono-devel-list mailing list