how to remove an element from an array c#
static void Main(string[] args)
{
int[] arr = { 1, 3, 4, 9, 2 };
int numToRemove = 3;
var numIndex = arr.Where(x=>x ==numToRemove);
if(numIndex.Any()){
var idx = Array.IndexOf(arr,numToRemove);
var remove = arr.Remove(idx);
}
}
remove from array c#
// easier to convert to list and remove
int[] arrayToConvert = new int[] {1, 2, 3, 4};
List converted = new List(arrayToConvert);
converted.RemoveAt(0);
// do this if you cant use list instead of array
|