Creates a new array with just the specified elements. : Array Util « Collections Data Structure « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Date Time
8.Design Patterns
9.Development Class
10.Event
11.File Stream
12.Generics
13.GUI Windows Form
14.Internationalization I18N
15.Language Basics
16.LINQ
17.Network
18.Office
19.Reflection
20.Regular Expressions
21.Security
22.Services Event
23.Thread
24.Web Services
25.Windows
26.Windows Presentation Foundation
27.XML
28.XML LINQ
C# / C Sharp » Collections Data Structure » Array Util 




Creates a new array with just the specified elements.
  
//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
{
    /// <summary>
    /// Provides extension methods for string arrays.
    /// </summary>
    public static class ArrayExt
    {

        #region Shrink

        /// <summary>
        /// Creates a new array with just the specified elements.
        /// </summary>
        /// <param name="arr"></param>
        /// <param name="startIndex"></param>
        /// <param name="endIndex"></param>
        /// <returns></returns>
        public static Array Shrink(this Array arr, int startIndex, int endIndex)
        {
            if (arr == nullreturn null;
            if (startIndex >= arr.Lengthreturn Array.CreateInstance(arr.GetType().GetElementType()0);
            if (endIndex < startIndexreturn Array.CreateInstance(arr.GetType().GetElementType()0);
            if (startIndex < 0startIndex = 0;

            int length = (endIndex - startIndex1;
            Array retArr = Array.CreateInstance(arr.GetType().GetElementType(), length);
            for (int i = startIndex; i <= endIndex; i++)
                retArr.SetValue(arr.GetValue(i), i - startIndex);

            return retArr;
        }

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

        /// <summary>
        /// Creates a new array with just the specified elements.
        /// </summary>
        /// <param name="arr"></param>
        /// <param name="startIndex"></param>
        /// <param name="endIndex"></param>
        /// <returns></returns>
        public static string[] Shrink(this string[] arr, int startIndex, int endIndex)
        {
            return Shrink((Array)arr, startIndex, endIndexas string[];
        }

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

        /// <summary>
        /// Creates a new array with just the specified elements.
        /// </summary>
        /// <param name="arr"></param>
        /// <param name="startIndex"></param>
        /// <param name="endIndex"></param>
        /// <returns></returns>
        public static int[] Shrink(this int[] arr, int startIndex, int endIndex)
        {
            return Shrink((Array)arr, startIndex, endIndexas int[];
        }

        #endregion
   }
}

   
    
  














Related examples in the same category
1.Return the average of the given values
2.Return the percentage of a given value.
3.return the min value in the list of double
4.return the max value in the list of double
5.Returns a string representation of the sbyte array
6.Returns a string representation of the char array
7.Returns a string representation of the double array
8.Returns a string representation of the float array
9.Returns a string representation of the int array
10.Returns a string representation of the long array
11.Returns a string representation of the object array
12.Returns a string representation of the short value array
13.Returns a string representation of the bool value array
14.Ensures that the sbyte array cannot hold more than maxCapacity elements.
15.Ensures that the char array cannot hold more than maxCapacity elements.
16.Ensures that the double array cannot hold more than maxCapacity elements.
17.Ensures that the float array cannot hold more than maxCapacity elements.
18.Ensures that the int array cannot hold more than maxCapacity elements.
19.Ensures that the long array cannot hold more than maxCapacity elements.
20.Ensures that the object array cannot hold more than maxCapacity elements.
21.Ensures that the short array cannot hold more than maxCapacity elements.
22.Ensures that the bool array cannot hold more than maxCapacity elements.
23.Copy an array into another array.
24.Swap two elements in a array
25.Generic Growable Array
26.foreach is used to display the contents of an array of integers.
27.Are two arrays equal.
28.Are thos two arrays having the save contents
29.Convert object array to string
30.Get array size
31.Convert array content to generic type array
32.Searches for the specified object and returns the index of the first occurrence within the entire one-dimensional System.Array.
33.Array 2D
34.Get a array of object from a enum datatype.
35.Reinitializes an int array to the given value in an optimized way: intArraySet
36.Returns a Boolean indicating whether the Array is Empty (is Null or has a length of zero).
37.Places elements from an enumerable into an array.
38.Bit Array 2D
39.Counting the distribution of the values in an array.
40.Collection of static methods for operations on arrays
41.Char Array Writer
42.Computes the indices
43.Compare Array
44.Remove element from Array
45.Concatenate Array
46.Get the array slice between the two indexes
47.Find subarray in the source array.
48.Check if the array contains needle on specified position
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.