Ejemplo n.º 1
0
 protected override void ClearItems()
 {
     foreach (var item in this)
     {
         item.Report = null;
     }
     base.ClearItems();
     _report.InvalidateBitCount();
 }
Ejemplo n.º 2
0
 void InvalidateBitCount()
 {
     _totalBits = ElementCount * ElementBits;
     if (Report != null)
     {
         Report.InvalidateBitCount();
     }
 }