natemcmaster / CommandLineUtils

Command line parsing and utilities for .NET

Home Page:https://natemcmaster.github.io/CommandLineUtils/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[Question] Is it possible to pass an argument more than one time to build a list ?

DomZZ opened this issue · comments

I need to send a list and would like to avoid to pass whole list as a string with separators in one argument :
myconsoleapp.exe --tenantList tenant1|tenant2[tenantX

I would prefer to send multiple same argument are receive a list :
myconsoleapp.exe --tenant tenant1 --tenant tenant2 --tenant tenantX

Is it possible to get this ?

Thanks