Is there any specific reason why indexing is not allowed in IEnumerable.
I found a workaround for the problem I had, but just curious to know why it does not allow i
You can use ToList to convert to a list. For example,
SomeItems.ToList()[1]