2 writes to list
System.Activities (2)
System\Activities\Statements\TimerTable.cs (2)
274
this.
list
= new List<TimerData>();
298
set { this.
list
= value; }
11 references to list
System.Activities (11)
System\Activities\Statements\TimerTable.cs (11)
282
return this.
list
;
290
return this.
list
.Count;
297
get { return this.
list
; }
310
int index = this.
list
.BinarySearch(timerData, TimerComparer.Instance);
313
this.
list
.Insert(~index, timerData);
329
for (int i = 0; i < this.
list
.Count; i++)
331
this.dictionary.Add(this.
list
[i].Bookmark, this.
list
[i]);
341
int index = this.
list
.BinarySearch(timerData, TimerComparer.Instance);
342
this.
list
.RemoveAt(index);
354
this.
list
.Clear();