NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Array Class

Provides methods for creating, manipulating, searching, and sorting arrays. This is the base class for all arrays in the system.

Object
   Array

[Visual Basic]
Public Class Array
   Implements ICloneable, ICollection, IEnumerable
[C#]
public class Array : ICloneable, ICollection, IEnumerable
[C++]
public __gc class Array : public ICloneable, ICollection,
   IEnumerable
[JScript]
public class Array implements ICloneable, ICollection, IEnumerable

Remarks

An element is a value in the Array. The length of an Array is size of an Array; that is, the number of elements it can contain. The rank of an Array is the number of dimensions in the Array. The lower bound or lowbound 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.

Requirements

Namespace: System

Assembly: mscorlib.dll

See Also

Array Members | System Namespace