Copies all the items from the System.Web.UI.WebControls.MenuItemBindingCollection object to a compatible one-dimensional array of System.Web.UI.WebControls.MenuItemBinding objects, starting at the specified index in the target array.
- array
- A zero-based array of System.Web.UI.WebControls.MenuItemBinding objects that receives the copied items from the collection.
- index
- The position in the target array at which to start receiving the copied content.
Use the MenuItemCollection.CopyTo(MenuItem[], int) method to copy the contents of the collection into the specified zero-based array. Items are copied starting at the specified index of the target array. With the array, you can then use array syntax to access the items in the System.Web.UI.WebControls.MenuItemBindingCollection object.
As an alternative, you can also use the System.Web.UI.StateManagedCollection.GetEnumerator method to create an enumerator that can be used to access the items in the collection.