Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

If I declared a dictionary like this:

private static Dictionary<string, object> aDict = new Dictionary<string, object>();

And now I want to use it at another place. How do I reset it?

aDict = new Dictionary<string, object>(); // like this?

aDict = null; // or like this?

or other reset styles?

question from:https://stackoverflow.com/questions/1978821/how-to-reset-a-dictionary

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

1 Answer

You can simply use the Clear method, it will remove all keys and values, then you can reuse it without having to create new instances:

aDict.Clear();

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...