6

我正在使用csi.exeC# Interactive Compiler 来运行.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).
4

3 回答 3

7

CSI 有一个Args为您解析参数的全局变量。在大多数情况下,这将为您提供所需的参数,就像您argv在 C/C++ 程序或argsC#Main()签名中访问一样static void Main(string[] args)

Args有一个类型IList<string>而不是string[]。因此,您将使用.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.”
于 2019-03-20T22:03:24.727 回答
1

这是我的脚本:

    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 和脚本参数之间的“--”。

于 2016-08-10T19:01:45.023 回答
-1

Environment.GetCommandLineArgs()返回["csi", "script.csx", "2000"]该示例。

于 2016-07-22T14:30:24.767 回答