Open
Description
Consider the following idea below.
It is setup to have 2 properties that can always be supplied (Start/End Date), one property that can be supplied with the "file" and the "filter1" set, and then 1 property for the "filter1", 1 property for the "filter2" and 1 property for the "file" set. Is this possible?
public class Opts1
{
[Option('s')]
public DateTime StartDate {get; set;}
[Option('e')]
public DateTime EndDate {get; set; }
[Option('n', SetName = "file;filter1")]
public string Name { get; set;}
[Option('a', SetName = "filter1")]
public int Age { get; set; }
[Option('i', SetName = "filter2")]
public string ID { get; set;}
[Option('f', SetName = "file")]
public string InputFile {get; set;}
}