You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a method accepts an IEnumerable but all usages of that method pass in the same type (e.g. List<T> or T[]) then we don't need IEnumerable and we should just use the type directly to avoid interface dispatch.