brad
2
Q:

remove index from array c#

List.Remove("ElementTypeAndValue");
// Or remove from index using:
List.Remove(List[index]);
0
//You can't change length of array in c#
//But you change Lists in c#
int foos = new List<int>(array);
foos.RemoveAt(index);
array = foos.ToArray();
0

New to Communities?

Join the community