C Sharp (C#) - Collections
Given
Which code snippet correctly finds the first number greater than 5 and removes it from the list?
List<int> nums = new List<int> {7, 2, 9, 4, 6};Which code snippet correctly finds the first number greater than 5 and removes it from the list?
