My code starts like this:
public static List<DbProgressReport> DbProgressReportProperty { get; set; }
Then, I try wrapping the updates with a lock as follows (removing the set because I do it someplace else now)
public static List<DbProgressReport> DbProgressReportProperty
{
get
{
lock (lockDbProgressReportProperty)
{
return _dbProgressReportList;
}
}
}
I then realize that I need to copy the data because it may change while the caller prints it so I decide to return a temporary copy of the data as follows:
public static List<DbProgressReport> DbProgressReportProperty
{
get
{
lock (lockDbProgressReportProperty)
{
var dbProgressReportsNew = new List<DbProgressReport>();
if (_dbProgressReportList != null)
{
// make temp copy to avoid locking issues on read
foreach (var rec in _dbProgressReportList)
{
dbProgressReportsNew.Add(rec);
}
}
return dbProgressReportsNew;
}
}
}
I then notice that ReSharper has a suggestion.
Read more: PeterKellner.net