How to create an int array .array size?
create an int array of dynamic size .array size will be increased as user add values program will have a class that have following properties "count values of array" "capacity of array" and methods are "add()"sort array(),remove(int element),clear(),show(), can anyone make this plzzz

mohsin ahmadPosted Aug 9, 2012, 2:01 PM
Akkiraju IvaturiPosted Aug 6, 2012, 12:27 AM
List
list.Add(123);
list.Add(456);
int[] myArray = list.ToArray();
This should solve your problem as in C# there is no REDIM statement as in VB.