Castle.Facilities.NHibernateIntegration.Util.FieldInfoCollection.AddRange C# (CSharp) Method

AddRange() public method

Adds the elements of a FieldInfo array to the end of the FieldInfoCollection.
Please refer to ArrayList.AddRange for details.
/// is a null reference. /// The /// is read-only or has a fixed size. /// -or- /// The FieldInfoCollection already contains /// one or more elements in , /// and the FieldInfoCollection /// ensures that all elements are unique. ///
public AddRange ( FieldInfo array ) : void
array System.Reflection.FieldInfo /// An of /// elements that should be added to the end of the /// .
return void
		public virtual void AddRange(FieldInfo[] array)
		{
			if (array == null)
				throw new ArgumentNullException("array");

			AddRange(array, array.Length);
		}

Same methods

FieldInfoCollection::AddRange ( FieldInfo array, int range ) : void
FieldInfoCollection::AddRange ( FieldInfoCollection collection ) : void