Пример #1
0
		/// <summary>
		/// Copies the elements of the specified <see cref="ModuleRequire">ModuleRequire</see> array to the end of the collection.
		/// </summary>
		/// <param name="value">An array of type <see cref="ModuleRequire">ModuleRequire</see> containing the Components to add to the collection.</param>
		public void AddRange(ModuleRequire[] value) 
		{
			for (int i = 0;	(i < value.Length); i = (i + 1)) 
			{
				this.Add(value[i]);
			}
		}
Пример #2
0
		/// <summary>
		/// Copies the collection Components to a one-dimensional <see cref="T:System.Array">Array</see> instance beginning at the specified index.
		/// </summary>
		/// <param name="array">The one-dimensional <see cref="T:System.Array">Array</see> that is the destination of the values copied from the collection.</param>
		/// <param name="index">The index of the array at which to begin inserting.</param>
		public void CopyTo(ModuleRequire[] array, int index) 
		{
			this.List.CopyTo(array, index);
		}
Пример #3
0
		/// <summary>
		/// Gets a value indicating whether the collection contains the specified <see cref="ModuleRequireCollection">ModuleRequireCollection</see>.
		/// </summary>
		/// <param name="value">The <see cref="ModuleRequireCollection">ModuleRequireCollection</see> to search for in the collection.</param>
		/// <returns><b>true</b> if the collection contains the specified object; otherwise, <b>false</b>.</returns>
		public bool Contains(ModuleRequire value) 
		{
			return this.List.Contains(value);
		}
Пример #4
0
		public int Add(ModuleRequire value) 
		{
			return this.List.Add(value);
		}
Пример #5
0
		public void Remove(ModuleRequire value) 
		{
			List.Remove(value);
		}
Пример #6
0
		/// <summary>
		/// Initializes a new instance of the <see cref="ModuleRequireCollection">ModuleRequireCollection</see> class containing the specified array of <see cref="ModuleRequire">ModuleRequire</see> Components.
		/// </summary>
		/// <param name="value">An array of <see cref="ModuleRequire">ModuleRequire</see> Components with which to initialize the collection. </param>
		public ModuleRequireCollection(ModuleRequire[] value)
		{
			this.AddRange(value);
		}
Пример #7
0
		/// <summary>
		/// Gets the index in the collection of the specified <see cref="ModuleRequireCollection">ModuleRequireCollection</see>, if it exists in the collection.
		/// </summary>
		/// <param name="value">The <see cref="ModuleRequireCollection">ModuleRequireCollection</see> to locate in the collection.</param>
		/// <returns>The index in the collection of the specified object, if found; otherwise, -1.</returns>
		public int IndexOf(ModuleRequire value) 
		{
			return this.List.IndexOf(value);
		}
Пример #8
0
		public void Insert(int index, ModuleRequire value)	
		{
			List.Insert(index, value);
		}
Пример #9
0
 /// <summary>
 /// Gets a value indicating whether the collection contains the specified <see cref="ModuleRequireCollection">ModuleRequireCollection</see>.
 /// </summary>
 /// <param name="value">The <see cref="ModuleRequireCollection">ModuleRequireCollection</see> to search for in the collection.</param>
 /// <returns><b>true</b> if the collection contains the specified object; otherwise, <b>false</b>.</returns>
 public bool Contains(ModuleRequire value)
 {
     return(this.List.Contains(value));
 }
Пример #10
0
 public int Add(ModuleRequire value)
 {
     return(this.List.Add(value));
 }
Пример #11
0
 public void Remove(ModuleRequire value)
 {
     List.Remove(value);
 }
Пример #12
0
 public void Insert(int index, ModuleRequire value)
 {
     List.Insert(index, value);
 }
Пример #13
0
 /// <summary>
 /// Gets the index in the collection of the specified <see cref="ModuleRequireCollection">ModuleRequireCollection</see>, if it exists in the collection.
 /// </summary>
 /// <param name="value">The <see cref="ModuleRequireCollection">ModuleRequireCollection</see> to locate in the collection.</param>
 /// <returns>The index in the collection of the specified object, if found; otherwise, -1.</returns>
 public int IndexOf(ModuleRequire value)
 {
     return(this.List.IndexOf(value));
 }