3 writes to tempAutoGeneratedArguments
System.Activities (3)
System\Activities\Activity.cs (3)
783this.tempAutoGeneratedArguments = new Collection<RuntimeArgument>(); 794this.tempAutoGeneratedArguments = null; 1108this.tempAutoGeneratedArguments = null;
8 references to tempAutoGeneratedArguments
System.Activities (8)
System\Activities\Activity.cs (8)
781if (this.tempAutoGeneratedArguments == null) 786string name = generatedArgumentPrefix + this.tempAutoGeneratedArguments.Count.ToString(CultureInfo.InvariantCulture); 788this.tempAutoGeneratedArguments.Add(argument); 1087if (this.tempAutoGeneratedArguments != null) 1089Fx.Assert(this.tempAutoGeneratedArguments.Count > 0, "We should only have a non-null value here if we generated an argument"); 1098this.arguments = this.tempAutoGeneratedArguments; 1102for (int i = 0; i < this.tempAutoGeneratedArguments.Count; i++) 1104this.arguments.Add(this.tempAutoGeneratedArguments[i]);