我試圖獲取枚舉列表作爲選項。 [OptionList('m', "modules", HelpText = "List of modules you are going to install or uninstall.")]
public List<RegistrationType> Modules { get; set; }
不幸的是,它預計它是一個字符串列表。關於如何使它作爲lib的文檔
我剛剛學到了兩件事 - 1)如何在JAVA中使用省略號,即如何定義函數的變長參數列表。 以下是一個演示上述概念的程序。 public class variable
{
public static void main(String[] args)
{
int d1=2;
int d2=3;
int d3=4;
int d4=5;
假設我需要一個腳本,它從參數列表中刪除一些特定的參數,並回顯其餘部分。例如: 該腳本爲myscript.bash,要移除的參數是b和e。 > myscript.bash a b c d e f
a c d f
> myscript.bash a b c
a c
> myscript.bash b e
你會怎麼寫這樣的腳本?