Describe the two kinds of multidimensional arrays in .NET - DOT.NET

Briefly describe the two kinds of multidimensional arrays in .NET.

There are two types of multidimensional arrays:

Rectangular arrays :
These multidimensional arrays have all the sub-arrays with a particular dimension of the same length. You need use a single set of square brackets for rectangular arrays.

Jagged arrays :
These multidimensional arrays have each sub-array as independent arrays of different lengths. With these you need to use a separate set of square brackets for each dimension of the array.
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....
Explain how to dynamically add items to a menu in .NET - DOT.NET
Following answer provides a very generalized idea of how this can be done: The first step would be locating the Assembly DLL....
Post your comment