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