declare variable named as string+integer value

295 Views Asked by At

I want to add tabpages to tabcontrol1, and need to have tabpages created dynamically

 int a=10;
 TabPage tabpage"+a+" = new TabPage();

How can i achieve this :

tabpage10
tabpage12
tabpage13

created dynamically

3

There are 3 best solutions below

0
On

You can't, and you shouldn't try to. Instead, either have an array or list (if your numbers are all positive, effectively starting near 0) or a Dictionary<int, TabPage> for a more general mapping.

Whenever you find you have a collection of values, you should reach for a collection type - rather than a lot of different variables which happen to have names starting with a common prefix.

0
On

You can't dynamically generate variable names - and nor would you want to. Instead, consider adding the tab page to a collection.

List<TabPage> tabs = new List<TabPage>();
tabs.Add(new TabPage()); // 0
tabs.Add(new TabPage()); // 1
tabs.Add(new TabPage()); // 2
2
On

If you're in winforms:

int a = 10;
tabcontrol1.TabPages.Add(new TabPage("text") { Name = "tabpage" + a });
a++;

Then to access

var page = tabcontrol1.TabPages[0];

or by name

var page = tabcontrol1.TabPages["tabpage" + a];