/// <summary>
 /// Add a <see cref="ModuleThreshold"/> object to the collection.
 /// </summary>
 /// <param name="item">The item to add.</param>
 public void Add(ModuleThreshold item)
 {
     this.List.Add(item);
 }
 /// <summary>
 /// Insert object at this position.
 /// </summary>
 /// <param name="index">Position to insert at.</param>
 /// <param name="value">Object to insert.</param>
 public void Insert(int index, ModuleThreshold value)
 {
     this.List.Insert(index, value);
 }
 /// <summary>
 /// The remove method that takes a <see cref="ModuleThreshold"/> object.
 /// </summary>
 /// <param name="value">The item to remove.</param>
 public void Remove(ModuleThreshold value)
 {
     this.List.Remove(value);
 }
 /// <summary>
 /// Returns whether this collection contains this object.
 /// </summary>
 /// <param name="value">Object to find.</param>
 /// <returns>
 /// 	<c>true</c> if contains the specified value; otherwise, <c>false</c>.
 /// </returns>
 public bool Contains(ModuleThreshold value)
 {
     return this.List.Contains(value);
 }
 /// <summary>
 /// Returns index position of this object.
 /// </summary>
 /// <param name="value">The value.</param>
 /// <returns></returns>
 public int IndexOf(ModuleThreshold value)
 {
     return this.List.IndexOf(value);
 }
Пример #6
0
 /// <summary>
 /// The remove method that takes a <see cref="ModuleThreshold"/> object.
 /// </summary>
 /// <param name="value">The item to remove.</param>
 public void Remove(ModuleThreshold value)
 {
     this.List.Remove(value);
 }
Пример #7
0
 /// <summary>
 /// Add a <see cref="ModuleThreshold"/> object to the collection.
 /// </summary>
 /// <param name="item">The item to add.</param>
 public void Add(ModuleThreshold item)
 {
     this.List.Add(item);
 }
Пример #8
0
 /// <summary>
 /// Returns whether this collection contains this object.
 /// </summary>
 /// <param name="value">Object to find.</param>
 /// <returns>
 ///     <c>true</c> if contains the specified value; otherwise, <c>false</c>.
 /// </returns>
 public bool Contains(ModuleThreshold value)
 {
     return(this.List.Contains(value));
 }
Пример #9
0
 /// <summary>
 /// Returns index position of this object.
 /// </summary>
 /// <param name="value">The value.</param>
 /// <returns></returns>
 public int IndexOf(ModuleThreshold value)
 {
     return(this.List.IndexOf(value));
 }
Пример #10
0
 /// <summary>
 /// Insert object at this position.
 /// </summary>
 /// <param name="index">Position to insert at.</param>
 /// <param name="value">Object to insert.</param>
 public void Insert(int index, ModuleThreshold value)
 {
     this.List.Insert(index, value);
 }