如何访问.csx脚本中的命令行参数?

时间:2016-07-22 14:30:25

标签: c# c#-interactive csi

我正在使用csi.exe C#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).

3 个答案:

答案 0 :(得分:1)

CSI有一个Args global which parses out the arguments for you。在大多数情况下,这将为您提供所需的参数,就像在C / C ++程序中访问argv或在C#args签名Main()中访问static void Main(string[] args)一样。 / p>

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.”

答案 1 :(得分:-1)

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

答案 2 :(得分:-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

关键是&#39; - &#39;在csx和脚本参数之间。