public void Accept(IDebugValueVisitor visitor)
 {
     visitor.ShowProperties(this);
     if (_isCollection)
     {
         visitor.ShowCollectionItems(this);
     }
 }
 void IDebugPresentationAcceptor.Accept(IDebugValueVisitor visitor)
 {
     visitor.ShowProperties(this);
 }