4 writes to _set
PresentationFramework (4)
System\Windows\Controls\Primitives\Selector.cs (4)
2669
_set
= new Dictionary<ItemInfo, ItemInfo>(capacity, equalityComparer);
2680
_set
= new Dictionary<ItemInfo, ItemInfo>(collection._set, _equalityComparer);
2851
_set
= new Dictionary<ItemInfo, ItemInfo>(_list.Count);
2859
_set
= null;
13 references to _set
PresentationFramework (13)
System\Windows\Controls\Primitives\Selector.cs (13)
2680
_set = new Dictionary<ItemInfo, ItemInfo>(collection.
_set
, _equalityComparer);
2694
_set
?.Add(info, info);
2705
if (
_set
!= null)
2708
if (
_set
.TryGetValue(e, out realInfo))
2712
_set
.Remove(e); // remove from hash table
2754
if (
_set
!= null)
2756
return
_set
.ContainsKey(e);
2775
_set
?.Clear();
2846
get { return
_set
!= null; }
2849
if (value &&
_set
== null)
2854
_set
.Add(_list[i], _list[i]);
2868
if (
_set
!= null)
2870
if (!
_set
.TryGetValue(info, out result))