Hello.
If I declared a dictionary like this.
private static Dictionary<string, object> aDict = new Dictionary<string, object>();
And i still want to use it at another place. How to reset it?
aDict = new Dictionary<string, object>(); // like this?
aDict = null; // Like this ?
or other reset styles? THANK YOU.
I love the site,
THANK YOU ALL.