We have the following code:
foreach (SPWeb website in collectionOfWebSites)
{
// Some code, no dispose of website
}
SPDisposeChecker is reporting it as a memory leak. Should we dispose the website at the end of the foreach?