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 an IEnumerable<T> is passed to SetEach then the instance returned is the same IEnumerable. This would cause a potential multiple enumeration problem. In this case the code should use yield. If it is something other than strictly IEnumerable<T> then it should return the original parameter value.
The text was updated successfully, but these errors were encountered:
If an
IEnumerable<T>
is passed toSetEach
then the instance returned is the same IEnumerable. This would cause a potential multiple enumeration problem. In this case the code should useyield
. If it is something other than strictlyIEnumerable<T>
then it should return the original parameter value.The text was updated successfully, but these errors were encountered: