Aunque ciertamente puede construir un dispositivo de este tipo a partir de operadores de secuencia existentes, en este caso me inclinaría a escribir este como un operador de secuencia personalizado. Algo como:
// Returns "other" if the list is empty.
// Returns "other" if the list is non-empty and there are two different elements.
// Returns the element of the list if it is non-empty and all elements are the same.
public static int Unanimous(this IEnumerable<int> sequence, int other)
{
int? first = null;
foreach(var item in sequence)
{
if (first == null)
first = item;
else if (first.Value != item)
return other;
}
return first ?? other;
}
Eso es bastante claro, breve, cubre todos los casos y no crea innecesariamente iteraciones adicionales de la secuencia.
Convertir esto en un método genérico que funcione IEnumerable<T>
se deja como ejercicio. :-)