System.CommandLine.CommandLineConfiguration.GetChild C# (CSharp) 메소드

GetChild() 정적인 개인적인 메소드

static private GetChild ( int index, System.CommandLine.Command command ) : System.CommandLine.IdentifierSymbol
index int
command System.CommandLine.Command
리턴 System.CommandLine.IdentifierSymbol
            static IdentifierSymbol GetChild(int index, Command command)
                => index < command.Subcommands.Count
                    ? command.Subcommands[index]
                    : command.Options[index - command.Subcommands.Count];
        }