I have a piece of code where I am comparing two files using Beyond compare .
string s = @""C:\Program Files\Beyond Compare 2\BC2.exe"";
Process.Start(s, @"c:\temp\File1.txt c:\temp\File2.txt" );
Now i want to save the Compare report with a filename and at a locationon my desktop programatically.
I searched the documents but could not find anything on saving the reports.
Currently the above code execution opens a window as is visible in the image
(don't get confused with the black part on the window, i have colored it that way to hide file locations)
Thanks in advance.