using System.Collections.Generic;
public static void Main()
List<int> responses = new List<int>(){ 1 };
List<int> exclusions = new List<int>(){ 1 , 2 };
var priority = responses?.Any() == false ? true : responses.Any(r => !exclusions.Contains(r));
Console.WriteLine(priority.ToString());