如何访问 .csx 脚本中的命令行参数?
How to access command line arguments in .csx script?
我正在使用 csi.exe
C# 交互式编译器来 运行 一个 .csx
脚本。如何访问提供给我的脚本的任何命令行参数?
csi script.csx 2000
如果您不熟悉 csi.exe,这里是用法信息:
>csi /?
Microsoft (R) Visual C# Interactive Compiler version 1.3.1.60616
Copyright (C) Microsoft Corporation. All rights reserved.
Usage: csi [option] ... [script-file.csx] [script-argument] ...
Executes script-file.csx if specified, otherwise launches an interactive REPL (Read Eval Print Loop).
Environment.GetCommandLineArgs()
returns ["csi", "script.csx", "2000"]
例如。
这是我的脚本:
var t = Environment.GetCommandLineArgs();
foreach (var i in t)
Console.WriteLine(i);
将参数传递给 csx:
scriptcs hello.csx -- arg1 arg2 argx
打印出来:
hello.csx
--
arg1
arg2
argx
键是 csx 和脚本参数之间的“--”。
CSI 有 。在大多数情况下,这将为您提供所需的参数,就好像您在 C/C++ 程序中访问 argv
或在 C# Main()
签名 [=16] 中访问 args
=].
Args
有一个 IList<string>
rather than string[]
. So you will use .Count
的类型来查找参数的数量而不是 .Length
.
下面是一些示例用法:
#!/usr/bin/env csi
Console.WriteLine($"There are {Args.Count} args: {string.Join(", ", Args.Select(arg => $"“{arg}”"))}");
以及一些示例调用:
ohnob@DESKTOP-RC0QNSG MSYS ~/AppData/Local/Temp
$ ./blah.csx
There are 0 args:
ohnob@DESKTOP-RC0QNSG MSYS ~/AppData/Local/Temp
$ ./blah.csx hi, these are args.
There are 4 args: “hi,”, “these”, “are”, “args.”
ohnob@DESKTOP-RC0QNSG MSYS ~/AppData/Local/Temp
$ ./blah.csx 'hi, this is one arg.'
There are 1 args: “hi, this is one arg.”
我正在使用 csi.exe
C# 交互式编译器来 运行 一个 .csx
脚本。如何访问提供给我的脚本的任何命令行参数?
csi script.csx 2000
如果您不熟悉 csi.exe,这里是用法信息:
>csi /?
Microsoft (R) Visual C# Interactive Compiler version 1.3.1.60616
Copyright (C) Microsoft Corporation. All rights reserved.
Usage: csi [option] ... [script-file.csx] [script-argument] ...
Executes script-file.csx if specified, otherwise launches an interactive REPL (Read Eval Print Loop).
Environment.GetCommandLineArgs()
returns ["csi", "script.csx", "2000"]
例如。
这是我的脚本:
var t = Environment.GetCommandLineArgs();
foreach (var i in t)
Console.WriteLine(i);
将参数传递给 csx:
scriptcs hello.csx -- arg1 arg2 argx
打印出来:
hello.csx
--
arg1
arg2
argx
键是 csx 和脚本参数之间的“--”。
CSI 有 argv
或在 C# Main()
签名 [=16] 中访问 args
=].
Args
有一个 IList<string>
rather than string[]
. So you will use .Count
的类型来查找参数的数量而不是 .Length
.
下面是一些示例用法:
#!/usr/bin/env csi
Console.WriteLine($"There are {Args.Count} args: {string.Join(", ", Args.Select(arg => $"“{arg}”"))}");
以及一些示例调用:
ohnob@DESKTOP-RC0QNSG MSYS ~/AppData/Local/Temp
$ ./blah.csx
There are 0 args:
ohnob@DESKTOP-RC0QNSG MSYS ~/AppData/Local/Temp
$ ./blah.csx hi, these are args.
There are 4 args: “hi,”, “these”, “are”, “args.”
ohnob@DESKTOP-RC0QNSG MSYS ~/AppData/Local/Temp
$ ./blah.csx 'hi, this is one arg.'
There are 1 args: “hi, this is one arg.”