Exemple #1
0
 internal Enumerator(UIInfoCollection dictionary)
 {
     this.dictionary = dictionary ?? throw new ArgumentNullException();
     version         = dictionary.version;
     index           = 0;
     Current         = default;
 }
Exemple #2
0
 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;
 }
Exemple #3
0
 internal InfoCollection(UIInfoCollection dictionary) : base(dictionary)
 {
 }
Exemple #4
0
 protected private InnerCollectionBase(UIInfoCollection dictionary)
 {
     this.Dictionary = dictionary ?? throw new ArgumentNullException();
 }