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 indexing if your enumerable type is string like below
((string[])MyEnumerableStringList)[0]