Collections Data Structure C#

//Microsoft Public License (Ms-PL)
//http://visualizer.codeplex.com/license
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Redwerb.BizArk.Core.ArrayExt
{
    /// 
    /// Provides extension methods for string arrays.
    /// 

    public static class ArrayExt
    {
        #region Shrink
        /// 
        /// Creates a new array with just the specified elements.
        /// 

        /// 
        /// 
        /// 
        /// 
        public static Array Shrink(this Array arr, int startIndex, int endIndex)
        {
            if (arr == null) return null;
            if (startIndex >= arr.Length) return Array.CreateInstance(arr.GetType().GetElementType(), 0);
            if (endIndex < startIndex) return Array.CreateInstance(arr.GetType().GetElementType(), 0);
            if (startIndex < 0) startIndex = 0;
            int length = (endIndex - startIndex) + 1;
            Array retArr = Array.CreateInstance(arr.GetType().GetElementType(), length);
            for (int i = startIndex; i <= endIndex; i++)
                retArr.SetValue(arr.GetValue(i), i - startIndex);
            return retArr;
        }
        /// 
        /// Creates a new array with just the specified elements.
        /// 

        /// 
        /// 
        /// 
        public static string[] Shrink(this string[] arr, int startIndex)
        {
            return Shrink((Array)arr, startIndex, arr.Length - 1) as string[];
        }
        /// 
        /// Creates a new array with just the specified elements.
        /// 

        /// 
        /// 
        /// 
        /// 
        public static string[] Shrink(this string[] arr, int startIndex, int endIndex)
        {
            return Shrink((Array)arr, startIndex, endIndex) as string[];
        }
        /// 
        /// Creates a new array with just the specified elements.
        /// 

        /// 
        /// 
        /// 
        public static int[] Shrink(this int[] arr, int startIndex)
        {
            return Shrink((Array)arr, startIndex, arr.Length - 1) as int[];
        }
        /// 
        /// Creates a new array with just the specified elements.
        /// 

        /// 
        /// 
        /// 
        /// 
        public static int[] Shrink(this int[] arr, int startIndex, int endIndex)
        {
            return Shrink((Array)arr, startIndex, endIndex) as int[];
        }
        #endregion
   }
}