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
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
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.