[Mono-list] Filenames with spaces in it

Miguel de Icaza miguel@ximian.com
13 Aug 2002 09:48:06 -0400


> My guess is the runtime isn't making the same preprocessing of double-quoted 
> parameters.

Its the c# compiler:

	driver.cs:LoadArgs:		

while ((line = f.ReadLine ()) != null){
	string [] line_args = line.Split (new char [] { ' ' });

	foreach (string arg in line_args)
		args.Add (arg);
}

Miguel.