Answers for "remove values over 1 c# array"

C#
1

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();
Posted by: Guest on November-24-2020
0

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);
  }
}
Posted by: Guest on November-28-2021

C# Answers by Framework

Browse Popular Code Answers by Language