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