using System.Collections.Generic;
public static void Main()
var ListaDeRespostasPossiveis = new List<Resposta>(){
new Resposta() { id = 1, Nome = "respostaUm"},
new Resposta() { id = 2, Nome = "respostaDois"},
new Resposta() { id = 3, Nome = "respostatres"},
new Resposta() { id = 4, Nome = "respostaQuatro"}
bool resppostasFiltro = ListaDeRespostasPossiveis.Any(x => x.Nome == "respostaUm" || x.Nome == "respostaDois");
Console.WriteLine(resppostasFiltro);
public int id { get; set; }
public string Nome { get; set; }