I have a Class (ElementList) that contains a lot of information. I have implemented a method (.ToArray()) that gets some information of the object and puts it in an array, or list.
I want to loop this array. When I do the following :
for Element in ElementList.ToArray()
Do stuff
Does it execute .ToArray() every time?