Perhaps someone can point me in the correct direction, because i'm completely stumped on this.
I have a function that simply prints out a LinkedList of classes:
LinkedList<Component> components = new LinkedList<Component>();
...
private void PrintComponentList()
{
Console.WriteLine("---Component List: " + components.Count + " entries---");
foreach (Component c in components)
{
Console.WriteLine(c);
}
Console.WriteLine("------");
}
The "Component" object actually has a custom ToString() call as such:
int Id;
...
public override String ToString()
{
return GetType() + ": " + Id;
}
This function typically works fine - however i've run into the issue that when it builds to about 30 or so entries in the list, the PrintcomplentList foreach statement comes back with an "InvalidOperationException: Collection was modified after the enumerator was instantiated."
Now as you can see i'm not modifying the code within the for loop, and I havn't explicitly created any threads, although this is within an XNA environment (if it matters). It should be noted that the printout is frequent enough that the Console output is slowing down the program as a whole.
I'm completely stumped, has anyone else out there run into this?