Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/coreclr/tools/Common/CommandLine/ArgumentParser.cs')
-rw-r--r--src/coreclr/tools/Common/CommandLine/ArgumentParser.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coreclr/tools/Common/CommandLine/ArgumentParser.cs b/src/coreclr/tools/Common/CommandLine/ArgumentParser.cs
index 86515f5cb13..b538a669b93 100644
--- a/src/coreclr/tools/Common/CommandLine/ArgumentParser.cs
+++ b/src/coreclr/tools/Common/CommandLine/ArgumentParser.cs
@@ -18,7 +18,7 @@ namespace Internal.CommandLine
public ArgumentParser(IEnumerable<string> arguments, Func<string, IEnumerable<string>> responseFileReader)
{
if (arguments == null)
- throw new ArgumentNullException("arguments");
+ throw new ArgumentNullException(nameof(arguments));
_tokens = ArgumentLexer.Lex(arguments, responseFileReader);
}