In my code in need to use a IEnumerable<> several times thus get the Resharper error of "Possible multiple enumeration of IEnumerable".
Sample code:
public List<object> Foo(IEnumerable<object> objects)
{
if (objects == null || !objects.Any())
throw new ArgumentException();
var firstObject = objects.First();
var list = DoSomeThing(firstObject);
var secondList = DoSomeThingElse(objects);
list.AddRange(secondList);
return list;
}
- I can change the the objects parameter to be
Listand then avoid the possible multiple enumeration but then I don't get the highest object that I can handle. - Another thing that I can do is to is to convert the
IEnumerabletoListin the beginning of the method:
public List<object> Foo(IEnumerable<object> objects)
{
var objectList = objects.ToList();
// ...
}
But this is just awkward.
What would you do in this scenario?
