4 writes to _set
PresentationFramework (4)
System\Windows\Controls\Primitives\Selector.cs (4)
2682
_set
= new Dictionary<ItemInfo, ItemInfo>(capacity, equalityComparer);
2693
_set
= new Dictionary<ItemInfo, ItemInfo>(collection._set, _equalityComparer);
2870
_set
= new Dictionary<ItemInfo, ItemInfo>(_list.Count);
2878
_set
= null;
15 references to _set
PresentationFramework (15)
System\Windows\Controls\Primitives\Selector.cs (15)
2693
_set = new Dictionary<ItemInfo, ItemInfo>(collection.
_set
, _equalityComparer);
2707
if (
_set
!= null)
2709
_set
.Add(info, info);
2721
if (
_set
!= null)
2724
if (
_set
.TryGetValue(e, out realInfo))
2728
_set
.Remove(e); // remove from hash table
2770
if (
_set
!= null)
2772
return
_set
.ContainsKey(e);
2791
if (
_set
!= null)
2793
_set
.Clear();
2865
get { return
_set
!= null; }
2868
if (value == true &&
_set
== null)
2873
_set
.Add(_list[i], _list[i]);
2887
if (
_set
!= null)
2889
if (!
_set
.TryGetValue(info, out result))