> 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.