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
Currently, it's possible to cause type mismatch as Argument<T> and Option<T> expose a possibility to specify default value/factory as object. There is no guarantee that returned object is of type T.
Option<bool>runApiCompatOption=new("--run-api-compat","....");runApiCompatOption.SetDefaultValue(123);// providing int for a bool