I have a process which have something like...
Process.startInfo.Arguments = "abc";
I am calling a different function where I am fetching process instance from processId( which is stored in db)
I am getting every info related to process but not the one stored in StartInfo of a process Like process.StartInfo.Arguments is returning ""(empty string) instead of returning "abc".
.Net mvc framework,c# solution please...