我在迭代以下循环时收到InvalidOperationException
。
foreach (LetterPoint word in NonIntersectingWordsLocations) {
if (IntersectingWordsLocations.Any(item => item.Position.X == word.Position.X && item.Position.Y == word.Position.Y && item.Letter == word.Letter)) {
NonIntersectingWordsLocations.Remove(word);
}
}
在代码中的那一点,IntersectingWordsLocations
包含总共12
个元素,NonIntersectingWordLocations
包含总共57
个元素。两个列表都包含 NO 无效或null元素。
其中一个列表元素如下所示:{(LETTER:R, POSITION:(X:1Y:2))}
以下是我用于列表的课程......
LetterPoint.cs
public class LetterPoint : LetterData<Point>, IEquatable<LetterPoint> {
public Point Position {
get { return Item; }
set { Item = value; }
}
public LetterPoint(char c = ' ', int row = 0, int col = 0) {
Letter = c;
Position = new Point(row, col);
}
public string PositionToString => $"(X:{Item.X}Y:{Item.Y})";
public override string ToString() => $"(LETTER:{Letter}, POSITION:{PositionToString})";
// TO USE THE .COMPARE FUNCTION IN THE MAIN FILE
public bool Equals(LetterPoint other) => Letter == other.Letter && Position == other.Position;
}
为什么我收到此错误?
修改 我收到的错误信息是..
未处理的类型&#39; System.InvalidOperationException&#39; 发生在mscorlib.dll
其他信息:收集已修改;枚举操作 可能无法执行。
答案 0 :(得分:1)
因为在对每个操作执行期间无法修改(删除或添加元素)到列表,所以请尝试使用for循环。