/// <summary>
 /// Adds a <see cref="FormatterData"/> to the end of the collection.
 /// </summary>
 /// <param name="item">The <see cref="FormatterData"/> to be added to the end of the collection.</param>
 /// <returns>The position into which the new element was inserted.</returns>
 public int Add(FormatterData item)
 {
     return(base.List.Add(item));
 }
 /// <summary>
 /// Removes a member from the collection.
 /// </summary>
 /// <param name="item">The <see cref="FormatterData"/> to remove from the collection.</param>
 public void Remove(FormatterData item)
 {
     base.List.Remove(item);
 }
 /// <summary>
 /// Retrieves the index of a specified <see cref="FormatterData"/> object in the collection.
 /// </summary>
 /// <param name="item">The <see cref="FormatterData"/> object for which the index is returned.</param>
 /// <returns>
 /// The index of the specified <see cref="FormatterData"/>. If the <see cref="FormatterData"/> is not currently a member of the collection, it returns -1.
 /// </returns>
 public int IndexOf(FormatterData item)
 {
     return(base.List.IndexOf(item));
 }
 /// <summary>
 /// Inserts a <see cref="FormatterData"/> 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="FormatterData"/> to insert.</param>
 public void Insert(int index, FormatterData item)
 {
     base.List.Insert(index, item);
 }
 /// <summary>
 /// Determines whether a <see cref="FormatterData"/> is in the collection.
 /// </summary>
 /// <param name="item">The <see cref="FormatterData"/> 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(FormatterData item)
 {
     return(base.List.Contains(item));
 }