We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 553beb9 commit 6d488baCopy full SHA for 6d488ba
src/libraries/System.Private.CoreLib/src/System/Environment.Browser.cs
@@ -36,12 +36,9 @@ private static OperatingSystem GetOSVersion()
36
private static string? GetProcessPath() => null;
37
38
#if !MONO
39
- private static string[] GetCommandLineArgsNative()
40
- {
41
- // This is only used for delegate created from native host
42
- // Consider to use /proc/self/cmdline to get command line
43
- return Array.Empty<string>();
44
- }
+ // This is only used for delegate created from native host
+ // Consider to use /proc/self/cmdline to get command line
+ private static string[] GetCommandLineArgsNative() => [];
45
#endif
46
47
}
0 commit comments