using System.Collections.Generic;
public static void Main()
List<string> Hello = new List<string>() { "item1", "item2", "item3" };
List<string> Remove = new List<string>() { "item1", "item3" };
Hello = Hello.Except(Remove).ToList();
Console.WriteLine(string.Join(" ", Hello));