A
ad
I have a array like:
string[] as1={ "Tigher", "Dog", ", "Lion"};
Now I want to make another array as2, which include all items in as1 and add
a new item "Wheel".
How can I make as2 with code in run time?
string[] as1={ "Tigher", "Dog", ", "Lion"};
Now I want to make another array as2, which include all items in as1 and add
a new item "Wheel".
How can I make as2 with code in run time?