Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
141 views
in Technique[技术] by (71.8m points)

c# - Delete all items from a list

I want to delete all the elements from my list:

foreach (Session session in m_sessions)
{
    m_sessions.Remove(session);
}

In the last element I get an exception: UnknownOperation.

Anyone know why?

how should I delete all the elements? It is ok to write something like this:

m_sessions = new List<Session>();
question from:https://stackoverflow.com/questions/9980245/delete-all-items-from-a-list

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You aren't allowed to modify a List<T> whilst iterating over it with foreach. Use m_sessions.Clear() instead.

Whilst you could write m_sessions = new List<Session>() this is not a good idea. For a start it is wasteful to create a new list just to clear out an existing one. What's more, if you have other references to the list then they will continue to refer to the old list. Although, as @dasblinkenlight points out, m_sessions is probably a private member and it's unlikely you have other references to the list. No matter, Clear() is the canonical way to clear a List<T>.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...