using System.Collections.Generic;
public static void Main()
var includedItems = new List<string>() {
var excludedItems = new List<string>() {
var resultList = includedItems.Except(excludedItems);
foreach(var result in resultList) {
Console.WriteLine(result);