We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This method signature overlaps the one defined on line 24, the default parameter value can only be used with named arguments.
public ObservableCollection(Action<TValue>? onAdd = null, Action<TValue>? onRemove = null) : this(Empty<TValue>(), onAdd, onRemove) { }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Codacy detected an issue:
Message:
This method signature overlaps the one defined on line 24, the default parameter value can only be used with named arguments.
Occurred on:
public ObservableCollection(Action<TValue>? onAdd = null, Action<TValue>? onRemove = null) : this(Empty<TValue>(), onAdd, onRemove) { }
Currently on:
The text was updated successfully, but these errors were encountered: