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
IList<> has better performance when using a for-loop, as long as .Count is cached before the start of the iteration. Update certain operators to use IList<> over ICollection<>/IEnumerable<>.
IList<>
has better performance when using a for-loop, as long as.Count
is cached before the start of the iteration. Update certain operators to useIList<>
overICollection<>
/IEnumerable<>
.Code
The text was updated successfully, but these errors were encountered: