OptionExtensions.FromAmong<TOption>(TOption, String[]) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
設定選項只接受指定的值,並建議它們做為命令行完成。
public:
generic <typename TOption>
where TOption : System::CommandLine::Option[System::Runtime::CompilerServices::Extension]
static TOption FromAmong(TOption option, ... cli::array <System::String ^> ^ values);
public static TOption FromAmong<TOption> (this TOption option, params string[] values) where TOption : System.CommandLine.Option;
static member FromAmong : 'Option * string[] -> 'Option (requires 'Option :> System.CommandLine.Option)
<Extension()>
Public Function FromAmong(Of TOption As Option) (option As TOption, ParamArray values As String()) As TOption
類型參數
- TOption
選項剖析值的型別。
參數
- option
- TOption
要設定的選項。
- values
- String[]
選項允許的值。
傳回
TOption
已設定的自變數。