Meskipun Anda pasti dapat membuat perangkat seperti itu dari operator urutan yang ada, saya dalam hal ini cenderung menulis yang ini sebagai operator urutan khusus. Sesuatu seperti:
// 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;
}
Itu cukup jelas, singkat, mencakup semua kasus, dan tidak perlu membuat iterasi tambahan dari urutan tersebut.
Menjadikan ini menjadi metode umum yang berhasil IEnumerable<T>
dibiarkan sebagai latihan. :-)