Array Class

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Provides methods for creating, manipulating, searching, and sorting arrays, thereby serving as the base class for all arrays in the common language runtime.

Inheritance Hierarchy

System..::.Object
  System..::.Array

Namespace:  System
Assembly:  mscorlib (in mscorlib.dll)

Syntax

Public MustInherit Class Array _
    Implements IList, ICollection, IEnumerable, IStructuralComparable,  _
    IStructuralEquatable
public abstract class Array : IList, 
    ICollection, IEnumerable, IStructuralComparable, IStructuralEquatable

The Array type exposes the following members.

Properties

  Name Description
IsFixedSize Gets a value indicating whether the Array has a fixed size.
IsReadOnly Gets a value indicating whether the Array is read-only.
IsSynchronized Gets a value indicating whether access to the Array is synchronized (thread safe).
Length Gets a 32-bit integer that represents the total number of elements in all the dimensions of the Array; zero if there are no elements in the array.
Rank Gets the zero-based rank (number of dimensions) of the Array.
SyncRoot Gets an object that can be used to synchronize access to the Array.

Top

Methods

  Name Description
AsReadOnly<(Of <(T>)>) Returns a read-only wrapper for the specified array.
BinarySearch(Array, Object) Searches an entire one-dimensional sorted Array for a specific element, using the IComparable interface implemented by each element of the Array and by the specified object.
BinarySearch(Array, Object, IComparer) Searches an entire one-dimensional sorted Array for a value using the specified IComparer interface.
BinarySearch(Array, Int32, Int32, Object) Searches a range of elements in a one-dimensional sorted Array for a value, using the IComparable interface implemented by each element of the Array and by the specified value.
BinarySearch(Array, Int32, Int32, Object, IComparer) Searches a range of elements in a one-dimensional sorted Array for a value, using the specified IComparer interface.
BinarySearch<(Of <(T>)>)(array<T>[]()[], T) Searches an entire one-dimensional sorted Array for a specific element, using the IComparable<(Of <(T>)>) generic interface implemented by each element of the Array and by the specified object.
BinarySearch<(Of <(T>)>)(array<T>[]()[], T, IComparer<(Of <(T>)>)) Searches an entire one-dimensional sorted Array for a value using the specified IComparer<(Of <(T>)>) generic interface.
BinarySearch<(Of <(T>)>)(array<T>[]()[], Int32, Int32, T) Searches a range of elements in a one-dimensional sorted Array for a value, using the IComparable<(Of <(T>)>) generic interface implemented by each element of the Array and by the specified value.
BinarySearch<(Of <(T>)>)(array<T>[]()[], Int32, Int32, T, IComparer<(Of <(T>)>)) Searches a range of elements in a one-dimensional sorted Array for a value, using the specified IComparer<(Of <(T>)>) generic interface.
Clear Sets a range of elements in the Array to zero, to false, or to nullNothingnullptra null reference (Nothing in Visual Basic), depending on the element type.
Clone Creates a shallow copy of the Array.
ConstrainedCopy Copies a range of elements from an Array starting at the specified source index and pastes them to another Array starting at the specified destination index. Guarantees that all changes are undone if the copy does not succeed completely.
Copy(Array, Array, Int32) Copies a range of elements from an Array starting at the first element and pastes them into another Array starting at the first element. The length is specified as a 32-bit integer.
Copy(Array, Int32, Array, Int32, Int32) Copies a range of elements from an Array starting at the specified source index and pastes them to another Array starting at the specified destination index. The length and the indexes are specified as 32-bit integers.
CopyTo Copies all the elements of the current one-dimensional Array to the specified one-dimensional Array starting at the specified destination Array index. The index is specified as a 32-bit integer.
CreateInstance(Type, Int32) Creates a one-dimensional Array of the specified Type and length, with zero-based indexing.
CreateInstance(Type, array<Int32>[]()[]) Creates a multidimensional Array of the specified Type and dimension lengths, with zero-based indexing. The dimension lengths are specified in an array of 32-bit integers.
CreateInstance(Type, array<Int32>[]()[], array<Int32>[]()[]) Creates a multidimensional Array of the specified Type and dimension lengths, with the specified lower bounds.
Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Exists<(Of <(T>)>) Determines whether the specified array contains elements that match the conditions defined by the specified predicate.
Finalize Allows an object to try to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.)
Find<(Of <(T>)>) Searches for an element that matches the conditions defined by the specified predicate, and returns the first occurrence within the entire Array.
FindAll<(Of <(T>)>) Retrieves all the elements that match the conditions defined by the specified predicate.
FindIndex<(Of <(T>)>)(array<T>[]()[], Predicate<(Of <(T>)>)) Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the entire Array.
FindIndex<(Of <(T>)>)(array<T>[]()[], Int32, Predicate<(Of <(T>)>)) Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the range of elements in the Array that extends from the specified index to the last element.
FindIndex<(Of <(T>)>)(array<T>[]()[], Int32, Int32, Predicate<(Of <(T>)>)) Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the range of elements in the Array that starts at the specified index and contains the specified number of elements.
FindLast<(Of <(T>)>) Searches for an element that matches the conditions defined by the specified predicate, and returns the last occurrence within the entire Array.
FindLastIndex<(Of <(T>)>)(array<T>[]()[], Predicate<(Of <(T>)>)) Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the last occurrence within the entire Array.
FindLastIndex<(Of <(T>)>)(array<T>[]()[], Int32, Predicate<(Of <(T>)>)) Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the last occurrence within the range of elements in the Array that extends from the first element to the specified index.
FindLastIndex<(Of <(T>)>)(array<T>[]()[], Int32, Int32, Predicate<(Of <(T>)>)) Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the last occurrence within the range of elements in the Array that contains the specified number of elements and ends at the specified index.
ForEach<(Of <(T>)>) Performs the specified action on each element of the specified array.
GetEnumerator Returns an IEnumerator for the Array.
GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
GetLength Gets a 32-bit integer that represents the number of elements in the specified dimension of the Array.
GetLowerBound Gets the lower bound of the specified dimension in the Array.
GetType Gets the Type of the current instance. (Inherited from Object.)
GetUpperBound Gets the upper bound of the specified dimension in the Array.
GetValue(Int32) Gets the value at the specified position in the one-dimensional Array. The index is specified as a 32-bit integer.
GetValue(array<Int32>[]()[]) Gets the value at the specified position in the multidimensional Array. The indexes are specified as an array of 32-bit integers.
IndexOf(Array, Object) Searches for the specified object and returns the index of the first occurrence within the entire one-dimensional Array.
IndexOf(Array, Object, Int32) Searches for the specified object and returns the index of the first occurrence within the range of elements in the one-dimensional Array that extends from the specified index to the last element.
IndexOf(Array, Object, Int32, Int32) Searches for the specified object and returns the index of the first occurrence within the range of elements in the one-dimensional Array that starts at the specified index and contains the specified number of elements.
IndexOf<(Of <(T>)>)(array<T>[]()[], T) Searches for the specified object and returns the index of the first occurrence within the entire Array.
IndexOf<(Of <(T>)>)(array<T>[]()[], T, Int32) Searches for the specified object and returns the index of the first occurrence within the range of elements in the Array that extends from the specified index to the last element.
IndexOf<(Of <(T>)>)(array<T>[]()[], T, Int32, Int32) Searches for the specified object and returns the index of the first occurrence within the range of elements in the Array that starts at the specified index and contains the specified number of elements.
Initialize Initializes every element of the value-type Array by calling the default constructor of the value type.
LastIndexOf(Array, Object) Searches for the specified object and returns the index of the last occurrence within the entire one-dimensional Array.
LastIndexOf(Array, Object, Int32) Searches for the specified object and returns the index of the last occurrence within the range of elements in the one-dimensional Array that extends from the first element to the specified index.
LastIndexOf(Array, Object, Int32, Int32) Searches for the specified object and returns the index of the last occurrence within the range of elements in the one-dimensional Array that contains the specified number of elements and ends at the specified index.
LastIndexOf<(Of <(T>)>)(array<T>[]()[], T) Searches for the specified object and returns the index of the last occurrence within the entire Array.
LastIndexOf<(Of <(T>)>)(array<T>[]()[], T, Int32) Searches for the specified object and returns the index of the last occurrence within the range of elements in the Array that extends from the first element to the specified index.
LastIndexOf<(Of <(T>)>)(array<T>[]()[], T, Int32, Int32) Searches for the specified object and returns the index of the last occurrence within the range of elements in the Array that contains the specified number of elements and ends at the specified index.
MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Resize<(Of <(T>)>) Changes the number of elements of an array to the specified new size.
Reverse(Array) Reverses the sequence of the elements in the entire one-dimensional Array.
Reverse(Array, Int32, Int32) Reverses the sequence of the elements in a range of elements in the one-dimensional Array.
SetValue(Object, Int32) Sets a value to the element at the specified position in the one-dimensional Array. The index is specified as a 32-bit integer.
SetValue(Object, array<Int32>[]()[]) Sets a value to the element at the specified position in the multidimensional Array. The indexes are specified as an array of 32-bit integers.
Sort(Array) Sorts the elements in an entire one-dimensional Array using the IComparable implementation of each element of the Array.
Sort(Array, IComparer) Sorts the elements in a one-dimensional Array using the specified IComparer.
Sort(Array, Array, IComparer) Sorts a pair of one-dimensional Array objects (one contains the keys and the other contains the corresponding items) based on the keys in the first Array using the specified IComparer.
Sort(Array, Int32, Int32) Sorts the elements in a range of elements in a one-dimensional Array using the IComparable implementation of each element of the Array.
Sort(Array, Int32, Int32, IComparer) Sorts the elements in a range of elements in a one-dimensional Array using the specified IComparer.
Sort(Array, Array, Int32, Int32, IComparer) Sorts a range of elements in a pair of one-dimensional Array objects (one contains the keys and the other contains the corresponding items) based on the keys in the first Array using the specified IComparer.
Sort<(Of <(T>)>)(array<T>[]()[]) Sorts the elements in an entire Array using the IComparable<(Of <(T>)>) generic interface implementation of each element of the Array.
Sort<(Of <(T>)>)(array<T>[]()[], IComparer<(Of <(T>)>)) Sorts the elements in an Array using the specified IComparer<(Of <(T>)>) generic interface.
Sort<(Of <(T>)>)(array<T>[]()[], Comparison<(Of <(T>)>)) Sorts the elements in an Array using the specified Comparison<(Of <(T>)>).
Sort<(Of <(T>)>)(array<T>[]()[], Int32, Int32) Sorts the elements in a range of elements in an Array using the IComparable<(Of <(T>)>) generic interface implementation of each element of the Array.
Sort<(Of <(T>)>)(array<T>[]()[], Int32, Int32, IComparer<(Of <(T>)>)) Sorts the elements in a range of elements in an Array using the specified IComparer<(Of <(T>)>) generic interface.
Sort<(Of <(TKey, TValue>)>)(array<TKey>[]()[], array<TValue>[]()[]) Sorts a pair of Array objects (one contains the keys and the other contains the corresponding items) based on the keys in the first Array using the IComparable<(Of <(T>)>) generic interface implementation of each key.
Sort<(Of <(TKey, TValue>)>)(array<TKey>[]()[], array<TValue>[]()[], IComparer<(Of <(TKey>)>)) Sorts a pair of Array objects (one contains the keys and the other contains the corresponding items) based on the keys in the first Array using the specified IComparer<(Of <(T>)>) generic interface.
Sort<(Of <(TKey, TValue>)>)(array<TKey>[]()[], array<TValue>[]()[], Int32, Int32) Sorts a range of elements in a pair of Array objects (one contains the keys and the other contains the corresponding items) based on the keys in the first Array using the IComparable<(Of <(T>)>) generic interface implementation of each key.
Sort<(Of <(TKey, TValue>)>)(array<TKey>[]()[], array<TValue>[]()[], Int32, Int32, IComparer<(Of <(TKey>)>)) Sorts a range of elements in a pair of Array objects (one contains the keys and the other contains the corresponding items) based on the keys in the first Array using the specified IComparer<(Of <(T>)>) generic interface.
ToString Returns a string that represents the current object. (Inherited from Object.)
TrueForAll<(Of <(T>)>) Determines whether every element in the array matches the conditions defined by the specified predicate.

Top

Extension Methods

  Name Description
AsQueryable Converts an IEnumerable to an IQueryable. (Defined by Queryable.)
Cast<(Of <(TResult>)>) Converts the elements of an IEnumerable to the specified type. (Defined by Enumerable.)
OfType<(Of <(TResult>)>) Filters the elements of an IEnumerable based on a specified type. (Defined by Enumerable.)

Top

Explicit Interface Implementations

  Name Description
ICollection..::.Count Gets the number of elements contained in the Array.
IList..::.Add Implements IList..::.Add. Throws a NotSupportedException in all cases.
IList..::.Clear Sets all elements in the Array to zero, to false, or to nullNothingnullptra null reference (Nothing in Visual Basic), depending on the element type.
IList..::.Contains Determines whether an element is in the Array.
IList..::.IndexOf Searches for the specified object and returns the index of the first occurrence within the current one-dimensional instance.
IList..::.Insert Implements IList..::.Insert. Throws a NotSupportedException in all cases.
IList..::.Item Gets or sets the element at the specified index.
IList..::.Remove Implements IList..::.Remove. Throws a NotSupportedException in all cases.
IList..::.RemoveAt Implements IList..::.RemoveAt. Throws a NotSupportedException in all cases.
IStructuralComparable..::.CompareTo Determines whether the current collection object precedes, occurs in the same position as, or follows another object in the sort order.
IStructuralEquatable..::.Equals Determines whether an object is equal to the current instance.
IStructuralEquatable..::.GetHashCode Returns a hash code for the current instance.

Top

Remarks

The Array class is the base class for language implementations that support arrays. However, only the system and compilers can derive explicitly from the Array class. Users should employ the array constructs provided by the language.

An element is a value in an Array. The length of an Array is the total number of elements it can contain. The rank of an Array is the number of dimensions in the Array. The lower bound of a dimension of an Array is the starting index of that dimension of the Array; a multidimensional Array can have different bounds for each dimension.

Type objects provide information about array type declarations. Array objects with the same array type share the same Type object.

Type..::.IsArray and Type..::.GetElementType might not return the expected results with Array because if an array is cast to the type Array, the result is an object, not an array. That is, typeof(System.Array).IsArray returns false, and typeof(System.Array).GetElementType returns nullNothingnullptra null reference (Nothing in Visual Basic).

Unlike most classes, Array provides the CreateInstance method, instead of public constructors, to allow for late bound access.

The Array..::.Copy method copies elements not only between arrays of the same type but also between standard arrays of different types; it handles type casting automatically.

The Array is not guaranteed to be sorted. You must sort the Array prior to performing operations (such as BinarySearch that require the Array to be sorted.

Examples

The following code example shows how Array..::.Copy copies elements between an array of type integer and an array of type Object.

Note

For information on how to compile and run this example code, see Building examples that have static TextBlock controls for Windows Phone 8.

Imports System
Public Class Example

    Public Shared Sub Demo(ByVal outputBlock As System.Windows.Controls.TextBlock)

        ' Creates and initializes a new integer array and a new Object array.
        Dim myIntArray() As Integer = {1, 2, 3, 4, 5}
        Dim myObjArray() As Object = {26, 27, 28, 29, 30}

        ' Prints the initial values of both arrays.
        outputBlock.Text &= String.Format("Initially,") & vbCrLf
        outputBlock.Text &= "integer array:"
        PrintValues(outputBlock, myIntArray)
        outputBlock.Text &= "Object array: "
        PrintValues(outputBlock, myObjArray)

        ' Copies the first two elements from the integer array to the Object array.
        Array.Copy(myIntArray, myObjArray, 2)

        ' Prints the values of the modified arrays.
        outputBlock.Text &= ControlChars.NewLine + "After copying the first two" _
           + " elements of the integer array to the Object array," & vbCrLf
        outputBlock.Text &= "integer array:"
        PrintValues(outputBlock, myIntArray)
        outputBlock.Text &= "Object array: "
        PrintValues(outputBlock, myObjArray)

        ' Copies the last two elements from the Object array to the integer array.
        Array.Copy(myObjArray, myObjArray.GetUpperBound(0) - 1, myIntArray, _
           myIntArray.GetUpperBound(0) - 1, 2)

        ' Prints the values of the modified arrays.
        outputBlock.Text &= ControlChars.NewLine + "After copying the last two" _
           + " elements of the Object array to the integer array," & vbCrLf
        outputBlock.Text &= "integer array:"
        PrintValues(outputBlock, myIntArray)
        outputBlock.Text &= "Object array: "
        PrintValues(outputBlock, myObjArray)
    End Sub

    Public Overloads Shared Sub PrintValues(ByVal outputBlock As System.Windows.Controls.TextBlock, ByVal myArr() As Object)
        Dim i As Object
        For Each i In myArr
            outputBlock.Text &= String.Format(ControlChars.Tab + "{0}", i)
        Next i
        outputBlock.Text &= vbCrLf
    End Sub

    Public Overloads Shared Sub PrintValues(ByVal outputBlock As System.Windows.Controls.TextBlock, ByVal myArr() As Integer)
        Dim i As Integer
        For Each i In myArr
            outputBlock.Text &= String.Format(ControlChars.Tab + "{0}", i)
        Next i
        outputBlock.Text &= vbCrLf
    End Sub
End Class

' This code produces the following output.
' 
' Initially,
' integer array:  1       2       3       4       5
' Object array:   26      27      28      29      30
' 
' After copying the first two elements of the integer array to the Object array,
' integer array:  1       2       3       4       5
' Object array:   1       2       28      29      30
' 
' After copying the last two elements of the Object array to the integer array,
' integer array:  1       2       3       29      30
' Object array:   1       2       28      29      30
using System;
public class Example
{
    public static void Demo(System.Windows.Controls.TextBlock outputBlock)
    {

        // Creates and initializes a new integer array and a new Object array.
        int[] myIntArray = new int[5] { 1, 2, 3, 4, 5 };
        Object[] myObjArray = new Object[5] { 26, 27, 28, 29, 30 };

        // Prints the initial values of both arrays.
        outputBlock.Text += String.Format("Initially:") + "\n";
        outputBlock.Text += "integer array:";
        PrintValues(outputBlock, myIntArray);
        outputBlock.Text += "Object array: ";
        PrintValues(outputBlock, myObjArray);

        // Copies the first two elements from the integer array to the Object array.
        Array.Copy(myIntArray, myObjArray, 2);

        // Prints the values of the modified arrays.
        outputBlock.Text += String.Format("\nAfter copying the first two elements of the integer array to the Object array,") + "\n";
        outputBlock.Text += "integer array:";
        PrintValues(outputBlock, myIntArray);
        outputBlock.Text += "Object array: ";
        PrintValues(outputBlock, myObjArray);

        // Copies the last two elements from the Object array to the integer array.
        Array.Copy(myObjArray, myObjArray.GetUpperBound(0) - 1, myIntArray, myIntArray.GetUpperBound(0) - 1, 2);

        // Prints the values of the modified arrays.
        outputBlock.Text += String.Format("\nAfter copying the last two elements of the Object array to the integer array,") + "\n";
        outputBlock.Text += "integer array:";
        PrintValues(outputBlock, myIntArray);
        outputBlock.Text += "Object array: ";
        PrintValues(outputBlock, myObjArray);
    }


    public static void PrintValues(System.Windows.Controls.TextBlock outputBlock, Object[] myArr)
    {
        foreach (Object i in myArr)
        {
            outputBlock.Text += String.Format("   {0}", i);
        }
        outputBlock.Text += "\n";
    }

    public static void PrintValues(System.Windows.Controls.TextBlock outputBlock, int[] myArr)
    {
        foreach (int i in myArr)
        {
            outputBlock.Text += String.Format("   {0}", i);
        }
        outputBlock.Text += "\n";
    }
    /* 
    This code produces the following output.

    Initially,
    integer array:  1       2       3       4       5
    Object array:   26      27      28      29      30

    After copying the first two elements of the integer array to the Object array,
    integer array:  1       2       3       4       5
    Object array:   1       2       28      29      30

    After copying the last two elements of the Object array to the integer array,
    integer array:  1       2       3       29      30
    Object array:   1       2       28      29      30
    */
}

The following code example creates and initializes an Array and displays its properties and its elements.

Public Class Example2

    Public Shared Sub Demo(ByVal outputBlock As System.Windows.Controls.TextBlock)

        ' Creates and initializes a new three-dimensional Array of
        ' type Int32.
        Dim myArr As Array = Array.CreateInstance(GetType(Int32), 2, 3, 4)
        Dim i As Integer
        For i = myArr.GetLowerBound(0) To myArr.GetUpperBound(0)
            Dim j As Integer
            For j = myArr.GetLowerBound(1) To myArr.GetUpperBound(1)
                Dim k As Integer
                For k = myArr.GetLowerBound(2) To myArr.GetUpperBound(2)
                    myArr.SetValue(i * 100 + j * 10 + k, i, j, k)
                Next k
            Next j
        Next i ' Displays the properties of the Array.
        outputBlock.Text &= String.Format("The Array has {0} dimension(s) & vbCrLf and a " _
           + "total of {1} elements.", myArr.Rank, myArr.Length)
        outputBlock.Text &= ControlChars.Tab + "Length" + ControlChars.Tab _
           + "Lower" + ControlChars.Tab + "Upper" & vbCrLf
        For i = 0 To myArr.Rank - 1
            outputBlock.Text &= String.Format("{0}:" + ControlChars.Tab + "{1}", i, _
               myArr.GetLength(i))
            outputBlock.Text &= String.Format(ControlChars.Tab + "{0}" + ControlChars.Tab _
               + "{1}", myArr.GetLowerBound(i), myArr.GetUpperBound(i)) & vbCrLf
        Next i

        ' Displays the contents of the Array.
        outputBlock.Text &= "The Array contains the following values:" & vbCrLf
        PrintValues(outputBlock, myArr)
    End Sub

    Public Shared Sub PrintValues(ByVal outputBlock As System.Windows.Controls.TextBlock, ByVal myArr As Array)
        Dim myEnumerator As System.Collections.IEnumerator = _
           myArr.GetEnumerator()
        Dim i As Integer = 0
        Dim cols As Integer = myArr.GetLength(myArr.Rank - 1)
        While myEnumerator.MoveNext()
            If i < cols Then
                i += 1
            Else
                outputBlock.Text &= vbCrLf
                i = 1
            End If
            outputBlock.Text &= String.Format(ControlChars.Tab + "{0}", myEnumerator.Current)
        End While
        outputBlock.Text &= vbCrLf
    End Sub
End Class

' This code produces the following output.
' 
' The Array has 3 dimension(s) and a total of 24 elements.
'     Length    Lower    Upper
' 0:    2    0    1
' 1:    3    0    2
' 2:    4    0    3
' The Array contains the following values:
'     0    1    2    3
'     10    11    12    13
'     20    21    22    23
'     100    101    102    103
'     110    111    112    113
'     120    121    122    123 
public class Example2
{

    public static void Demo(System.Windows.Controls.TextBlock outputBlock)
    {
        // Creates and initializes a new three-dimensional Array of type Int32.
        Array myArr = Array.CreateInstance(typeof(Int32), 2, 3, 4);
        for (int i = myArr.GetLowerBound(0); i <= myArr.GetUpperBound(0); i++)
            for (int j = myArr.GetLowerBound(1); j <= myArr.GetUpperBound(1); j++)
                for (int k = myArr.GetLowerBound(2); k <= myArr.GetUpperBound(2); k++)
                {
                    myArr.SetValue((i * 100) + (j * 10) + k, i, j, k);
                }

        // Displays the properties of the Array.
        outputBlock.Text += String.Format("The Array has {0} dimension(s) and a total of {1} elements.", myArr.Rank, myArr.Length) + "\n";
        outputBlock.Text += "  Length  Lower  Upper" + "\n";
        for (int i = 0; i < myArr.Rank; i++)
        {
            outputBlock.Text += String.Format("{0}:  {1}", i, myArr.GetLength(i));
            outputBlock.Text += String.Format("  {0}  {1}", myArr.GetLowerBound(i), myArr.GetUpperBound(i)) + "\n";
        }

        // Displays the contents of the Array.
        outputBlock.Text += "The Array contains the following values:" + "\n";
        PrintValues(outputBlock, myArr);
    }


    public static void PrintValues(System.Windows.Controls.TextBlock outputBlock, Array myArr)
    {
        System.Collections.IEnumerator myEnumerator = myArr.GetEnumerator();
        int i = 0;
        int cols = myArr.GetLength(myArr.Rank - 1);
        while (myEnumerator.MoveNext())
        {
            if (i < cols)
            {
                i++;
            }
            else
            {
                outputBlock.Text += "\n";
                i = 1;
            }
            outputBlock.Text += String.Format("   {0}", myEnumerator.Current);
        }
        outputBlock.Text += "\n";
    }
}

Version Information

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Platforms

Windows Phone

Thread Safety

Public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

This implementation does not provide a synchronized (thread safe) wrapper for an Array; however, .NET Framework classes based on Array provide their own synchronized version of the collection using the SyncRoot property.

Enumerating through a collection is intrinsically not a thread-safe procedure. Even when a collection is synchronized, other threads can still modify the collection, which causes the enumerator to throw an exception. To guarantee thread safety during enumeration, you can either lock the collection during the entire enumeration or catch the exceptions resulting from changes made by other threads.

See Also

Reference

System Namespace

Object

Type