Bamboo.Prevalence.Util.PrevalenceBaseUtil.GetFileInfoRange C# (CSharp) Method

GetFileInfoRange() public static method

Creates a new array of count objects from files starting at index.
public static GetFileInfoRange ( FileInfo files, int index, int count ) : System.IO.FileInfo[]
files System.IO.FileInfo source array
index int first index to copy
count int items to be copied
return System.IO.FileInfo[]
		public static FileInfo[] GetFileInfoRange(FileInfo[] files, int index, int count)
		{			
			FileInfo[] range = new FileInfo[count];
			Array.Copy(files, index, range, 0, count);
			return range;
		}