I have a collection:
interface IPinCollection : IEnumerable<IPin>
{
IPin this[int [,] indices] { get; set; }
}
Basically it has an innerlist as matrix which has IPin instance in its each [rowindex,columnIndex].
What I want to achieve is to be able to walkthrough the all IPin instances of this matrix with for..each.
Can you suggest me a thread-safe,simple and quick way to implement IEnumerable to achieve this?