Similarities and differences between arrays and collections - DOT.NET

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.
Describe the two kinds of multidimensional arrays in .NET - DOT.NET
There are two types of multidimensional arrays: Rectangular arrays, Jagged arrays....
Define context menu - DOT.NET
The menu that you get when you right-click is called the context ment....
What is the purpose of CloneMenu? - DOT.NET
CloneMenu method copies the whole list of MenuItem objects into the current menu....
Post your comment