2 writes to _list
Microsoft.Maui.Controls (2)
ListProxy.cs (2)
43 _list = enumerable as IList; 45 _list = new ReadOnlyListAdapter((IReadOnlyList<object>)enumerable);
9 references to _list
Microsoft.Maui.Controls (9)
ListProxy.cs (9)
44 if (_list == null && enumerable is IReadOnlyList<object>) 75 if (_list != null) 76 return _list.Contains(item); 93 if (_list != null) 94 return _list.IndexOf(item); 204 if (_list == null) 254 if (_list != null) 260 if (index >= _list.Count) 263 indexedValue = _list[index];