Hi,
I need to pass an Image URL from a windows form application to a console application. To do the same, I am calling the Console Application from a windows form application using Process.Start(PathOfConsoleApp.exe,URL) where URL is the Image URL. Now I am able to call the console application fine but I need to return a string from there but since I have called the application using Process.Start() and not using a class or a function, I am not able to do so.
I have tried using Process.Start.ToString(); but that is not helpful since that is absolutely wrong.
Could you please suggest how should I return the string?
Thanks Much!
Milan Singh Solanki
Milan Singh