internal Enumerator(UIInfoCollection dictionary) { this.dictionary = dictionary ?? throw new ArgumentNullException(); version = dictionary.version; index = 0; Current = default; }
internal Enumerator(UIInfoCollection dictionary, Converter <DoubleKeyValuePair <int, string, IUIElements>, T> converter) { this.dictionary = dictionary ?? throw new ArgumentNullException(); this.converter = converter ?? throw new ArgumentNullException(); index = 0; Current = default; version = dictionary.version; }
internal InfoCollection(UIInfoCollection dictionary) : base(dictionary) { }
protected private InnerCollectionBase(UIInfoCollection dictionary) { this.Dictionary = dictionary ?? throw new ArgumentNullException(); }