In c#.Net I am not able to fetch the commandline argument properly. It has problems in case i give the command like:
myProgram.exe "c:\inputfolder\" "d:\output.txt"
due to the backslash character(which i think acting as an escape character) in the args[] array i am getting only one argument instead of two It works fine if i gave without backslash:
myProgram.exe "c:\inputfolder" "d:\output.txt"
or without double quotes:
myProgram.exe c:\inputfolder\ "d:\output.txt"