Example #1
0
 /// <summary>
 /// Determines wheter an element is in the collection.
 /// </summary>
 /// <param name="value">The RFC_FIELDS to locate in the collection.</param>
 /// <returns>True if found; else false.</returns>
 public bool Contains(RFC_FIELDS value)
 {
     return(List.Contains(value));
 }
Example #2
0
 /// <summary>
 /// Searches for the specified RFC_FIELDS and returnes the zero-based index of the first occurrence in the collection.
 /// </summary>
 /// <param name="value">The RFC_FIELDS to locate in the collection.</param>
 /// <returns>The index of the object found or -1.</returns>
 public int IndexOf(RFC_FIELDS value)
 {
     return(List.IndexOf(value));
 }
Example #3
0
 /// <summary>
 /// Adds a RFC_FIELDS to the end of the collection.
 /// </summary>
 /// <param name="value">The RFC_FIELDS to be added to the end of the collection.</param>
 /// <returns>The index of the newRFC_FIELDS.</returns>
 public int Add(RFC_FIELDS value)
 {
     return(List.Add(value));
 }
Example #4
0
 /// <summary>
 /// Inserts a RFC_FIELDS 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_FIELDS to insert.</param>
 public void Insert(int index, RFC_FIELDS value)
 {
     List.Insert(index, value);
 }
Example #5
0
 /// <summary>
 /// Removes the first occurrence of the specified RFC_FIELDS from the collection.
 /// </summary>
 /// <param name="value">The RFC_FIELDS to remove from the collection.</param>
 public void Remove(RFC_FIELDS value)
 {
     List.Remove(value);
 }