Skip to content
New issue

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

Erroneous IDE0028 warning #77962

Closed
SoftCircuits opened this issue Apr 2, 2025 · 3 comments · Fixed by #77963
Closed

Erroneous IDE0028 warning #77962

SoftCircuits opened this issue Apr 2, 2025 · 3 comments · Fixed by #77963
Labels

Comments

@SoftCircuits
Copy link

SoftCircuits commented Apr 2, 2025

I'm having the following issue with Visual Studio 17.13.5 and .NET 9.

List<Transaction> Transactions;
BindingList<Transaction> TransactionList;

// Initialize Transactions here

TransactionList = new(Account.Imports);

The last line gives me warning IDE0028 Collection initialization can be simplified. If I choose the option to fix the code, it is changed to the following.

TransactionList = [.. Account.Imports];

I'm not sure I understand all the ramifications of this change. But after making it, the code no longer works.

Now, when I assign TransactionsList to the DataSource property of a ListBox or DataGridView, changes to the list are no longer reflected in the underlying list (Transactions).

As a side note, I personally find [.. Account.Imports] quite ugly. In particular, I really like ToList() at the end of a complex LINQ expression. It looks very clean to me, and I can put it on its own line. It's very easy to read. But now that gives a similar warning as well. And the [.. collection] is particularly ugly when it spans multiple lines. I don't understand how this recommendation came to be, but I wish this decision was not made.

@dotnet-issue-labeler dotnet-issue-labeler bot added Area-IDE untriaged Issues and PRs which have not yet been triaged by a lead labels Apr 2, 2025
@CyrusNajmabadi
Copy link
Member

As a side note, I personally find [.. Account.Imports] quite ugly.

You should disable the analyzer rule IDE then that suggested this. IDEXXXX rules are not mandatory. They're suggestions that you can apply if you prefer teh result over the way you wrote it before. If you do not, you don't have to use it, or apply any particular suggestion.

I don't understand how this recommendation came to be

The same way as all suggestions that offer a language feature that does the same thing as explicitly writing out the code in full. When we add new language features, we offer suggestions to use it over the full/explicit form. Whether you want that or not is up to you, which is why it's always just a suggestion, and not any sort of warning/error to not use the form you originally had.

@SoftCircuits
Copy link
Author

@CyrusNajmabadi Yes, I'm aware you can disable these warnings. But that doesn't make all of them are a good idea. I'm just expressing my opinion, which, if followed, would have prevented the bug I described.

@CyrusNajmabadi
Copy link
Member

which, if followed, would have prevented the bug I described.

not applying any analyzer suggestion will help avoid all bugs in analyzers :)

@dotnet-policy-service dotnet-policy-service bot removed the untriaged Issues and PRs which have not yet been triaged by a lead label Apr 3, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants