//namespace Immutable { using System; using System.Collections.Generic; public class DefaultDictionary : ImmutableDictionary { public readonly TValue defaultValue; public DefaultDictionary(TValue defaultValue, ImmutableDictionary dictionary) : base(dictionary) { this.defaultValue = defaultValue; } public DefaultDictionary(DefaultDictionary dictionary, TKey key, TValue value) : base(dictionary, key, value) { this.defaultValue = dictionary.defaultValue; } public new TValue this[TKey key] { get { return this.GetOrDefault(key, defaultValue); } } public new DefaultDictionary With(TKey key, TValue value) => new DefaultDictionary(this, key, value); } public static class DefaultDictionaryExtensionMethods { public static DefaultDictionary ToDefaultDictionary(this IEnumerable e, UValue defaultValue, Func key, Func value) => new DefaultDictionary(defaultValue, e.ToImmutableDictionary(key, value)); } //}