3 writes to propertyList
Microsoft.Build.Engine (3)
Properties\BuildPropertyGroup.cs (3)
163this.propertyList = null; 220this.propertyList = new ArrayList(); 311this.propertyList = new ArrayList();
13 references to propertyList
Microsoft.Build.Engine (13)
Properties\BuildPropertyGroup.cs (13)
273this.propertyList.Add(newProperty); 467if (this.propertyList != null) 471return this.propertyList.Count; 581if (this.propertyList != null) 585return this.propertyList.GetEnumerator(); 991this.propertyList.Add(propertyToAdd); 1060this.propertyList.Remove(property); 1133foreach (BuildProperty property in this.propertyList) 1206foreach (BuildProperty propertyToRemove in this.propertyList) 1231this.propertyList?.Clear(); 1455error.VerifyThrow(this.propertyList == null, 1487error.VerifyThrow(this.propertyList != null, 1538foreach (BuildProperty currentProperty in this.propertyList)