/// <summary>
 /// Initializes a new instance of the <see cref="CoverageExclusionCollection"/> class
 /// with the specified array of <see cref="CoverageExclusion"/> instances.
 /// </summary>
 public CoverageExclusionCollection(CoverageExclusion[] value)
 {
     AddRange(value);
 }
 /// <summary>
 /// Adds a <see cref="CoverageExclusion"/> to the end of the collection.
 /// </summary>
 /// <param name="item">The <see cref="CoverageExclusion"/> to be added to the end of the collection.</param> 
 /// <returns>The position into which the new element was inserted.</returns>
 public int Add(CoverageExclusion item)
 {
     return base.List.Add(item);
 }
 /// <summary>
 /// Inserts a <see cref="CoverageExclusion"/> into the collection at the specified index.
 /// </summary>
 /// <param name="index">The zero-based index at which <paramref name="item"/> should be inserted.</param>
 /// <param name="item">The <see cref="CoverageExclusion"/> to insert.</param>
 public void Insert(int index, CoverageExclusion item)
 {
     base.List.Insert(index, item);
 }
 /// <summary>
 /// Removes a member from the collection.
 /// </summary>
 /// <param name="item">The <see cref="CoverageExclusion"/> to remove from the collection.</param>
 public void Remove(CoverageExclusion item)
 {
     base.List.Remove(item);
 }
 /// <summary>
 /// Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array.        
 /// </summary>
 /// <param name="array">The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param> 
 /// <param name="index">The zero-based index in <paramref name="array"/> at which copying begins.</param>
 public void CopyTo(CoverageExclusion[] array, int index)
 {
     base.List.CopyTo(array, index);
 }
 /// <summary>
 /// Retrieves the index of a specified <see cref="CoverageExclusion"/> object in the collection.
 /// </summary>
 /// <param name="item">The <see cref="CoverageExclusion"/> object for which the index is returned.</param> 
 /// <returns>
 /// The index of the specified <see cref="CoverageExclusion"/>. If the <see cref="CoverageExclusion"/> is not currently a member of the collection, it returns -1.
 /// </returns>
 public int IndexOf(CoverageExclusion item)
 {
     return base.List.IndexOf(item);
 }
 /// <summary>
 /// Adds the elements of a <see cref="CoverageExclusion"/> array to the end of the collection.
 /// </summary>
 /// <param name="items">The array of <see cref="CoverageExclusion"/> elements to be added to the end of the collection.</param> 
 public void AddRange(CoverageExclusion[] items)
 {
     for (int i = 0; (i < items.Length); i = (i + 1))
     {
         Add(items[i]);
     }
 }
 /// <summary>
 /// Determines whether a <see cref="CoverageExclusion"/> is in the collection.
 /// </summary>
 /// <param name="item">The <see cref="CoverageExclusion"/> to locate in the collection.</param> 
 /// <returns>
 /// <see langword="true" /> if <paramref name="item"/> is found in the 
 /// collection; otherwise, <see langword="false" />.
 /// </returns>
 public bool Contains(CoverageExclusion item)
 {
     return base.List.Contains(item);
 }
 /// <summary>
 /// Adds a <see cref="CoverageExclusion"/> to the end of the collection.
 /// </summary>
 /// <param name="item">The <see cref="CoverageExclusion"/> to be added to the end of the collection.</param>
 /// <returns>The position into which the new element was inserted.</returns>
 public int Add(CoverageExclusion item)
 {
     return(base.List.Add(item));
 }
 /// <summary>
 /// Removes a member from the collection.
 /// </summary>
 /// <param name="item">The <see cref="CoverageExclusion"/> to remove from the collection.</param>
 public void Remove(CoverageExclusion item)
 {
     base.List.Remove(item);
 }
 /// <summary>
 /// Inserts a <see cref="CoverageExclusion"/> into the collection at the specified index.
 /// </summary>
 /// <param name="index">The zero-based index at which <paramref name="item"/> should be inserted.</param>
 /// <param name="item">The <see cref="CoverageExclusion"/> to insert.</param>
 public void Insert(int index, CoverageExclusion item)
 {
     base.List.Insert(index, item);
 }
 /// <summary>
 /// Retrieves the index of a specified <see cref="CoverageExclusion"/> object in the collection.
 /// </summary>
 /// <param name="item">The <see cref="CoverageExclusion"/> object for which the index is returned.</param>
 /// <returns>
 /// The index of the specified <see cref="CoverageExclusion"/>. If the <see cref="CoverageExclusion"/> is not currently a member of the collection, it returns -1.
 /// </returns>
 public int IndexOf(CoverageExclusion item)
 {
     return(base.List.IndexOf(item));
 }
 /// <summary>
 /// Determines whether a <see cref="CoverageExclusion"/> is in the collection.
 /// </summary>
 /// <param name="item">The <see cref="CoverageExclusion"/> to locate in the collection.</param>
 /// <returns>
 /// <see langword="true" /> if <paramref name="item"/> is found in the
 /// collection; otherwise, <see langword="false" />.
 /// </returns>
 public bool Contains(CoverageExclusion item)
 {
     return(base.List.Contains(item));
 }