diff --git a/xml/System/Array.xml b/xml/System/Array.xml index 387cb72a90c..d8f0b54f9fd 100644 --- a/xml/System/Array.xml +++ b/xml/System/Array.xml @@ -87,7 +87,7 @@ The class is the base class for language implementations that support arrays. However, only the system and compilers can derive explicitly from the class. Users should employ the array constructs provided by the language. - An element is a value in an . The length of an is the total number of elements it can contain. The lower bound of an is the index of its first element. An can have any lower bound, but it has a lower bound of zero by default. A different lower bound can be defined when creating an instance of the class using .A multidimensional can have different bounds for each dimension. An array can have a maximum of 32 dimensions. + An element is a value in an . The length of an is the total number of elements it can contain. The lower bound of an is the index of its first element. An can have any lower bound, but it has a lower bound of zero by default. A different lower bound can be defined when creating an instance of the class using . A multidimensional can have different bounds for each dimension. An array can have a maximum of 32 dimensions. Unlike the classes in the namespaces, has a fixed capacity. To increase the capacity, you must create a new object with the required capacity, copy the elements from the old object to the new one, and delete the old .