How to create an array in C#.NET that holds objects

C# ARRAY OBJECTS

C# Tutorials

  

C SHARP ARRAY OBJECTS

Learn Tutorials
How to create an array in C#.NET that holds objects

Example code for C sharp array objects:
ContentTabPage[] tabs = new ContentTabPage[10];

   tabs[0]=new ContentTabPage();

   this.mainTabControl.Controls.

Add(tabs[0]);
This is example code for how to create an array in c#.net that holds objects