Hi,
I am new in List<string> ,Memory leak,.net,
I can i manage memory for List<string>
e.g.
List<string> list=new List<string>();
list.Add("a");
list.Add("b");
list.Add("c");
list.Add("d");
list.Add("e");
list.Clear();
in above example ,will List.Clear() release memory for list or items.
Thanks and Regards
Shabab Begym