1 write to _actual
Microsoft.Maui.Controls (1)
Interactivity\TriggerBase.cs (1)
139
_actual
= new List<T>();
13 references to _actual
Microsoft.Maui.Controls (13)
Interactivity\TriggerBase.cs (13)
146
_actual
.Add(item);
153
_actual
.Clear();
158
return
_actual
.Contains(item);
163
_actual
.CopyTo(array, arrayIndex);
168
get { return
_actual
.Count; }
188
return
_actual
.Remove(item);
193
return ((IEnumerable)
_actual
).GetEnumerator();
198
return
_actual
.GetEnumerator();
203
return
_actual
.IndexOf(item);
210
_actual
.Insert(index, item);
215
get { return
_actual
[index]; }
220
_actual
[index] = value;
228
_actual
.RemoveAt(index);