I want to turn the follow function into a Lamda. After working on it for 45 minutes, I decided to go old school. How would one do this with a Lamda?
public static void NotIn<T>(List<T> inListOne, List<T> notInListTwo,ref List<T> resultList)
{
resultList = new List<T>();
foreach (T item in inListOne)
{
if (notInListTwo.Contains(item))
{
resultList.Add(item);
}
}
}