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
VS says it violates CA1061. Writing it down here to not forget.
The text was updated successfully, but these errors were encountered:
From what I understand, the VS's complaint is based on the following:
SearchableList
VirtualScrollList
public IReadOnlyList data
set
public IEnumerable data
IReadOnlyList
Sorry, something went wrong.
In other words, data.set(IEnumerable) hides data.set(IReadOnlyList)
data.set(IEnumerable)
data.set(IReadOnlyList)
It was fun to read CA1061: Question: When to hide this warning? Answer: Don't.
I'll stew on this info for a bit. Feel free to post your takes on what we should do with this situation.
No branches or pull requests
VS says it violates CA1061.
Writing it down here to not forget.
The text was updated successfully, but these errors were encountered: