13 writes to _listStore
WindowsBase (13)
Shared\MS\Utility\FrugalList.cs (13)
2031_listStore = null; 2039_listStore = new ArrayItemList<T>(collection); 2043_listStore = null; 2056_listStore = new ArrayItemList<T>(collection); 2060_listStore = null; 2114_listStore = newStore; 2167_listStore = new SingleItemList<T>(); 2189_listStore = newStore; 2197_listStore = newStore; 2201_listStore = newStore; 2209_listStore = newStore; 2213_listStore = newStore; 2336myClone._listStore = (FrugalListBase<T>)_listStore.Clone();
50 references to _listStore
WindowsBase (50)
Shared\MS\Utility\FrugalList.cs (50)
2073if (null != _listStore) 2075return _listStore.Capacity; 2082if (null != _listStore) 2084capacity = _listStore.Capacity; 2108if (null != _listStore) 2111newStore.Promote(_listStore); 2123if (null != _listStore) 2125return _listStore.Count; 2137if ((null != _listStore) && ((index < _listStore.Count) && (index >= 0))) 2139return _listStore.EntryAt(index); 2147if ((null != _listStore) && ((index < _listStore.Count) && (index >= 0))) 2149_listStore.SetAt(index, value); 2158if (null != _listStore) 2170FrugalListStoreState myState = _listStore.Add(value); 2185newStore.Promote(_listStore); 2196newStore.Promote(_listStore); 2205ArrayItemList<T> newStore = new ArrayItemList<T>(_listStore.Count + 1); 2208newStore.Promote(_listStore); 2220return _listStore.Count - 1; 2225if (null != _listStore) 2227_listStore.Clear(); 2233if ((null != _listStore) && (_listStore.Count > 0)) 2235return _listStore.Contains(value); 2242if ((null != _listStore) && (_listStore.Count > 0)) 2244return _listStore.IndexOf(value); 2251if ((index == 0) || ((null != _listStore) && ((index <= _listStore.Count) && (index >= 0)))) 2256if ((null != _listStore) && (_listStore.Count == _listStore.Capacity)) 2265_listStore.Insert(index, value); 2273if ((null != _listStore) && (_listStore.Count > 0)) 2275return _listStore.Remove(value); 2282if ((null != _listStore) && ((index < _listStore.Count) && (index >= 0))) 2284_listStore.RemoveAt(index); 2305_listStore.Add(filler); 2315if ((null != _listStore) && (_listStore.Count > 0)) 2317return _listStore.ToArray(); 2324if ((null != _listStore) && (_listStore.Count > 0)) 2326_listStore.CopyTo(array, index); 2334if (null != _listStore) 2336myClone._listStore = (FrugalListBase<T>)_listStore.Clone();