/// <summary>
 /// Determines wheter an element is in the collection.
 /// </summary>
 /// <param name="value">The RFC_FLDS_U to locate in the collection.</param>
 /// <returns>True if found; else false.</returns>
 public bool Contains(RFC_FLDS_U value)
 {
     return(List.Contains(value));
 }
 /// <summary>
 /// Searches for the specified RFC_FLDS_U and returnes the zero-based index of the first occurrence in the collection.
 /// </summary>
 /// <param name="value">The RFC_FLDS_U to locate in the collection.</param>
 /// <returns>The index of the object found or -1.</returns>
 public int IndexOf(RFC_FLDS_U value)
 {
     return(List.IndexOf(value));
 }
 /// <summary>
 /// Adds a RFC_FLDS_U to the end of the collection.
 /// </summary>
 /// <param name="value">The RFC_FLDS_U to be added to the end of the collection.</param>
 /// <returns>The index of the newRFC_FLDS_U.</returns>
 public int Add(RFC_FLDS_U value)
 {
     return(List.Add(value));
 }
 /// <summary>
 /// Inserts a RFC_FLDS_U into the collection at the specified index.
 /// </summary>
 /// <param name="index">The zero-based index at which value should be inserted.</param>
 /// <param name="value">The RFC_FLDS_U to insert.</param>
 public void Insert(int index, RFC_FLDS_U value)
 {
     List.Insert(index, value);
 }
 /// <summary>
 /// Removes the first occurrence of the specified RFC_FLDS_U from the collection.
 /// </summary>
 /// <param name="value">The RFC_FLDS_U to remove from the collection.</param>
 public void Remove(RFC_FLDS_U value)
 {
     List.Remove(value);
 }