共用方式為


CommandLineBuilderExtensions.EnableLegacyDoubleDashBehavior 方法

定義

判斷在命令行中剖析雙虛線 (--) 時的行為。

public static System.CommandLine.Builder.CommandLineBuilder EnableLegacyDoubleDashBehavior (this System.CommandLine.Builder.CommandLineBuilder builder, bool value = true);
static member EnableLegacyDoubleDashBehavior : System.CommandLine.Builder.CommandLineBuilder * bool -> System.CommandLine.Builder.CommandLineBuilder
<Extension()>
Public Function EnableLegacyDoubleDashBehavior (builder As CommandLineBuilder, Optional value As Boolean = true) As CommandLineBuilder

參數

value
Boolean

傳回

備註

當設定為 true時,下列 -- 所有標記都會放在集合中 UnparsedTokens 。 當設定為 false時,之後的所有標記 -- 都會被視為命令自變數,即使它們符合現有的選項也一樣。

適用於