1 write to states
System.Activities (1)
System\Activities\Debugger\StateManager.cs (1)
457this.states = new List<State>();
8 references to states
System.Activities (8)
System\Activities\Debugger\StateManager.cs (8)
481this.states.Add(state); 527if (this.indexLastBaked < this.states.Count) // there are newly created states. 539for (int i = indexLastBaked; i < this.states.Count; i++) 542if (this.states[i].DebuggingEnabled) 544MethodBuilder methodBuilder = this.CreateIsland(typeBuilder, this.states[i], false, checksumCache); 553MethodBuilder methodBuilderWithPriming = this.CreateIsland(typeBuilder, this.states[i], true, checksumCache); 557this.states[i].CacheMethodInfo(typeBuilder, methodBuilder.Name); 567this.indexLastBaked = this.states.Count;