6 references to GetCommandLineArgs
InProcessWebSite (1)
src\Servers\IIS\IIS\test\testassets\InProcessWebSite\Startup.cs (1)
1064await ctx.Response.WriteAsync(string.Join("|", Environment.GetCommandLineArgs().Skip(1)));
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\Interaction.vb (1)
61LengthOfAppName = Environment.GetCommandLineArgs(0).Length
Microsoft.VisualBasic.Tests (1)
Microsoft\VisualBasic\ApplicationServices\ConsoleApplicationBaseTests.cs (1)
12string[] expected = Environment.GetCommandLineArgs().Skip(1).ToArray();
PresentationFramework (1)
System\Windows\StartupEventArgs.cs (1)
55string[] args = Environment.GetCommandLineArgs();
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Environment.cs (1)
129public static string CommandLine => PasteArguments.Paste(GetCommandLineArgs(), pasteFirstArgumentUsingArgV0Rules: true);
System.Windows.Forms (1)
System\Windows\Forms\Application.cs (1)
1273string[] arguments = Environment.GetCommandLineArgs();