Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

remove index from array c#

//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();
 
PREVIOUS NEXT
Tagged: #remove #index #array
ADD COMMENT
Topic
Name
4+4 =