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.

June 2, 2022 / by Zsolt Soczó

Where is the bug?

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

  • SzikiG June 2, 2022

    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()

    • SzikiG June 2, 2022

      Na, a List()-emből lemaradt a generikus . Képzeljétek oda. :-)

    • Zsolt Soczó June 4, 2022

      Jó válasz. :)
      Én new List() {_userContext.UserId }-t használnék, nem kell a tömb feleslegesen.

      • SzikiG June 4, 2022

        Megsúgom, a List<T> belül is egy tömb. :-)

        • Zsolt Soczó June 4, 2022

          Persze, de csinálni egy tömböt, majd ToList()-elni rajta, az dupla allokálás.