Returns
[DllImport("kernel32.dll")]
private static extern String GetCommandLine();
None.
None.
Use this API function when you need access to raw command line string and not already parsed arguments in Main(string[] args)
string commandLine = GetCommandLine();
Do you know one? Please contribute it!