Hi all,
I am writing a program in c# and i want to get arguments of an unmanaged .exe file. I am using System.Diagnostics.Process class to start process and i think Process class only allow us to set the arguments of the processes by using Process.StartInfo.Arguments.

Is it possible to get the arguments of the processes in c#?

Thanks in advance.