MoreLINQ
MoreLINQ copied to clipboard
Could we have a morelinq analyzer which recommend best practices ?
For Example, see https://github.com/meziantou/Meziantou.Analyzer/blob/main/docs/Rules/MA0031.md
c1.Count()> 1 can be replace with c1.AtLeast(2), c1.Count() > c2.Count() can be repalce with c1.CompareCount(c2) > 0
Etc...
We can if someone is up to the challenge. I don't think it needs be integral to MoreLINQ though. Just from a development and release perspective, I imagine it can be incubated and built separately.