public bool Contains(T item)
 {
     lock (syncRoot) {
         return(underlyingCollection.Contains(item));
     }
 }