Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
Favorite Forums
Favorite Tags
Member Avatar for shabeg

Hi, I am creating an object of AxShockwaveFlash [code] private AxShockwaveFlash flash; void init() { this.flash= new AxShockwaveFlashObjects.AxShockwaveFlash(); } [/code] and releasing it in [code] protected override void Dispose(bool disposing) { if (_flash!= null) _flash.Dispose(); } [/code] but when i am using .Net Memory Profiler i am getting following message …

Member Avatar for jonsca
0
245
Member Avatar for shabeg

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

Member Avatar for sknake
0
1K