1 write to _dict
Microsoft.Maui.Controls (1)
OrderedDictionary.cs (1)
63
_dict
= new Dictionary<TKey, TValue>(capacity, equalityComparer);
17 references to _dict
Microsoft.Maui.Controls (17)
OrderedDictionary.cs (17)
64
_kvpCollection =
_dict
;
88
get { return
_dict
.Comparer; }
102
get { return
_dict
[_keyOrder[index]]; }
115
_dict
.Clear();
136
array[arrayIndex++] = new KeyValuePair<TKey, TValue>(key,
_dict
[key]);
145
get { return
_dict
.Count; }
167
_dict
.Add(key, value);
179
return
_dict
.ContainsKey(key);
190
get { return
_dict
[key]; }
193
if (!
_dict
.ContainsKey(key))
196
_dict
[key] = value;
216
return
_dict
.Remove(key) && _keyOrder.Remove(key);
228
return
_dict
.TryGetValue(key, out value);
266
_dict
[value.Key] = value.Value;
287
return
_dict
.ContainsValue(value);
357
_dict
.Add(key, value);
432
return _odict.
_dict
.Values.IndexOf(item);