Discuz.Entity.PhotoCommentInfoCollection.CopyTo C# (CSharp) Method

CopyTo() public method

Copies the collection Components to a one-dimensional Array instance beginning at the specified index.
public CopyTo ( PhotoCommentInfo array, int index ) : void
array PhotoCommentInfo The one-dimensional Array that is the destination of the values copied from the collection.
index int The index of the array at which to begin inserting.
return void
		public void CopyTo(PhotoCommentInfo[] array, int index) 
		{
			this.List.CopyTo(array, index);
		}