I just made an utterly silly logical error in this code. What is it? (This is not a performance question, this code is simply wrong.)
Could you hire me? Contact me if you like what I’ve done in this article and think I can create value for your company with my skills.
LEAVE A COMMENT
5 COMMENTS
Milyen az az UserId kapacitású új lista ? :-)
Inkább ez:
.Except(new int[] { _userContext.UserId }).ToList()
vagy ez
.Except(new List() { _userContext.UserId }).ToList()
Na, a List()-emből lemaradt a generikus . Képzeljétek oda. :-)
Jó válasz. :)() {_userContext.UserId }-t használnék, nem kell a tömb feleslegesen.
Én new List
Megsúgom, a List<T> belül is egy tömb. :-)
Persze, de csinálni egy tömböt, majd ToList()-elni rajta, az dupla allokálás.