static class Extensions {
public static IEnumerable<TSource> WhereKey<TSource,TKey>(
this SortedDictionary<TKey, TSource> source,
TKey key) {

yield return source[key];
}
}
