私の質問は、for ループを使用してリストをループし、この間に要素を追加すると、ループ中に追加された要素がカウントされるかどうかです。簡単なコード例:
for (int i = 0; i < listOfIds.Count(); i++) // Does loop counts the items added below?
{
foreach (var post in this.Collection)
{
if (post.ResponsePostID == listOfIds.ElementAt(i))
{
listOfIds.Add(post.PostId); // I add new item to list in here
}
}
}
私の説明が私の質問が何であるかを理解するのに十分であることを願っています.