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

CopyTo() public method

Copies the entire FieldInfoCollection to a one-dimensional Array of FieldInfo elements, starting at the beginning of the target array.
Please refer to ArrayList.CopyTo(int, Array, int, int) for details.
/// is a null reference. /// The number of elements in the source /// is greater than /// the available space in the destination . ///
public CopyTo ( FieldInfo array ) : void
array FieldInfo /// The one-dimensional that is the destination /// of the elements copied from the /// . /// The Array must have zero-based indexing.
return void
		public void CopyTo(FieldInfo[] array)
		{
			((ICollection) this).CopyTo(array, 0);
		}

Same methods

FieldInfoCollection::CopyTo ( FieldInfo array, int arrayIndex ) : void