Hi I have a SharePoint WebPart that I made and I override the Render method. My question is how long does an object live before the GC cleans it up? I created a StringReader object in the Render function, I am just wondering will it be disposed of once the page has rendered or will I have to explicitly call the .Close method.
Could this cause the SharePoint server to goto 99%? (w3wp.exe process went to 99% CPU)
Thank you.