Beispiel #1
0
 /// <summary>
 /// Removes the first occurrence of a specific FactorySettings from the collection.
 /// </summary>
 /// <param name="value">The FactorySettings to remove from the collection.</param>
 public void Remove(FactorySettings value)
 {
     List.Remove(value);
 }
Beispiel #2
0
 /// <summary>
 /// Inserts a FactorySettings item to 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 FactorySettings to insert into the collection.</param>
 public void Insert(int index, FactorySettings value)
 {
     List.Insert(index, value);
 }
Beispiel #3
0
 /// <summary>
 /// Adds a FactorySettings to the collection.
 /// </summary>
 /// <param name="value">The FactorySettings to add to the collection.</param>
 /// <returns>The position into which the new element was inserted.</returns>
 public int Add(FactorySettings value)
 {
     return(List.Add(value));
 }
Beispiel #4
0
 /// <summary>
 /// Determines the index of a specific item in the collection.
 /// </summary>
 /// <param name="value">The FactorySettings to locate in the collection.</param>
 /// <returns>The index of value if found in the collection; otherwise, -1.</returns>
 public int IndexOf(FactorySettings value)
 {
     return(List.IndexOf(value));
 }
Beispiel #5
0
 /// <summary>
 /// Determines whether the collection contains a specific FactorySettings value.
 /// </summary>
 /// <param name="value">The FactorySettings to locate in the collection.</param>
 /// <returns>true if the FactorySettings is found in the collection; otherwise, false.</returns>
 public bool Contains(FactorySettings value)
 {
     return(List.Contains(value));
 }