4 writes to _set
PresentationFramework (4)
System\Windows\Controls\Primitives\Selector.cs (4)
2670
_set
= new Dictionary<ItemInfo, ItemInfo>(capacity, equalityComparer);
2681
_set
= new Dictionary<ItemInfo, ItemInfo>(collection._set, _equalityComparer);
2852
_set
= new Dictionary<ItemInfo, ItemInfo>(_list.Count);
2860
_set
= null;
13 references to _set
PresentationFramework (13)
System\Windows\Controls\Primitives\Selector.cs (13)
2681
_set = new Dictionary<ItemInfo, ItemInfo>(collection.
_set
, _equalityComparer);
2695
_set
?.Add(info, info);
2706
if (
_set
!= null)
2709
if (
_set
.TryGetValue(e, out realInfo))
2713
_set
.Remove(e); // remove from hash table
2755
if (
_set
!= null)
2757
return
_set
.ContainsKey(e);
2776
_set
?.Clear();
2847
get { return
_set
!= null; }
2850
if (value == true &&
_set
== null)
2855
_set
.Add(_list[i], _list[i]);
2869
if (
_set
!= null)
2871
if (!
_set
.TryGetValue(info, out result))