7 writes to list
System (7)
compmod\system\collections\specialized\hybriddictionary.cs (7)
115
list
= new ListDictionary(caseInsensitive ? StringComparer.OrdinalIgnoreCase : null);
124
list
= new ListDictionary(caseInsensitive ? StringComparer.OrdinalIgnoreCase : null);
147
list
= null;
236
list
= new ListDictionary(caseInsensitive ? StringComparer.OrdinalIgnoreCase : null);
262
list
= null;
303
list
= new ListDictionary(caseInsensitive ? StringComparer.OrdinalIgnoreCase : null);
316
list
= new ListDictionary(caseInsensitive ? StringComparer.OrdinalIgnoreCase : null);
22 references to list
System (22)
compmod\system\collections\specialized\hybriddictionary.cs (22)
82
ListDictionary cachedList =
list
;
106
else if (
list
!= null) {
107
if (
list
.Count >= CutoverPoint - 1) {
111
list
[key] = value;
116
list
[key] = value;
123
if (
list
== null) {
126
return
list
;
131
IDictionaryEnumerator en =
list
.GetEnumerator();
155
ListDictionary cachedList =
list
;
235
if (
list
== null) {
237
list
.Add(key, value);
240
if (
list
.Count + 1 >= CutoverPoint) {
244
list
.Add(key, value);
260
if(
list
!= null) {
261
ListDictionary cachedList =
list
;
271
ListDictionary cachedList =
list
;
302
if (
list
== null) {
305
return
list
.GetEnumerator();
315
if (
list
== null) {
318
return
list
.GetEnumerator();
328
else if (
list
!= null){
329
list
.Remove(key);