I am converting a C program to C# and using MS Visual Studio 2005. In C program the arguments are passed as
CProg.exe DataFile < ParameterFile > OutPutFile
When I use above parameters in my project settings of C project, it works fine. Standard Input device is now redirected to "ParameterFile" and standard output device to "OutPutFile".
But when I use it with C# project, it does not redirect StdIn or SdtOut devices. In the application (while debugging it with Visual studio) I get all these values as arguments (including "<" and ">").
But when I run the C# application through command prompt, it works fine (same as C application).
It seems that MS Visual Studio 2005 does not understand redirection operators while debugging the application.
Or am I missing some settings?? Please suggest.