Using https://github.com/commandlineparser/commandline
I would like to set an Option as "Required" if the value parsed from another Option is equal to a particular value.
[Option('f', "foo", Required = true, HelpText = "Name of process")]
public string Foo{ get; set; }
[Option('b', "bar", Required = ( Foo == "egg" ), HelpText = "Name of process")]
public string Bar{ get; set; }