How can I access a element of a IReadOnlyCollection through it index?
问题 I am working with selenium and I am using the function FindElements so I am getting a element that implements IReadOnlyCollection interface. I want to iterate through the list but it seems that IReadOnlyCollection doesnt have any method like Get(int index) or a implementation of the operation []. I want to avoid transforming the result to a List or to an array since I just want to access the elements to read them. Currently I don't want to use a foreach since I need to manage an index so I