Hello,

I have been trying for hours to understand how to escape with double quotes and have had no luck.

I need to pass a string to a process.start arguments line like this.

String DF = @"C:\temp\test\backups\";

But need to add double quotes only to the front side of this line, like this when executed:


"C:\temp\test\backups\

And not like this:


"C:\temp\test\backups\"

And cannot figure out how to do it.

I have tried "\""

Any help would be great thanks,

Mike