Summarize the similarities and differences between arrays and collections.The Array class is not part of the System.Collections namespaces. But an array is a collection, as it is based on the IList interface.
Array has a fixed capacity but the classes in the System.Collections namespaces don’t.
However, only the system and compilers can derive explicitly from the Array class. Users should use the array constructs provided by the language that they use.
|