using System.Collections.Generic;
public static void RemoveAllEven(List<int> list)
List<int> tempList = new List<int>();
foreach (int j in tempList)
public static void Main()
List<int> list = new List<int>();
Random rand = new Random();
int num = rand.Next(1,10);
if (! list.Contains(num))