You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Option('a', "aa", Required = false, Separator = ',')]
public IEnumerable A { get; set; }
[Option('b', "bb", Required = false)]
public string B { get; set; }
[Value(0, Required = true)]
public string C { get; set; }
For some reasons, if I only specify Option A and C, I will get the following error:
ERROR(S):
A required value not bound to option name is missing.
Error setting value to option 'a, aa': Check if Option or Value attribute values are set properly for the given type.