4 writes to _set
PresentationFramework (4)
System\Windows\Controls\Primitives\Selector.cs (4)
2672
_set
= new Dictionary<ItemInfo, ItemInfo>(capacity, equalityComparer);
2683
_set
= new Dictionary<ItemInfo, ItemInfo>(collection._set, _equalityComparer);
2860
_set
= new Dictionary<ItemInfo, ItemInfo>(_list.Count);
2868
_set
= null;
15 references to _set
PresentationFramework (15)
System\Windows\Controls\Primitives\Selector.cs (15)
2683
_set = new Dictionary<ItemInfo, ItemInfo>(collection.
_set
, _equalityComparer);
2697
if (
_set
!= null)
2699
_set
.Add(info, info);
2711
if (
_set
!= null)
2714
if (
_set
.TryGetValue(e, out realInfo))
2718
_set
.Remove(e); // remove from hash table
2760
if (
_set
!= null)
2762
return
_set
.ContainsKey(e);
2781
if (
_set
!= null)
2783
_set
.Clear();
2855
get { return
_set
!= null; }
2858
if (value == true &&
_set
== null)
2863
_set
.Add(_list[i], _list[i]);
2877
if (
_set
!= null)
2879
if (!
_set
.TryGetValue(info, out result))