3 writes to items
System.Windows.Forms (3)
winforms\Managed\System\WinForms\PropertyGridInternal\MergePropertyDescriptor.cs (3)
501items = new object[0]; 510items = new object[0]; 522items = new object[collection.Count];
12 references to items
System.Windows.Forms (12)
winforms\Managed\System\WinForms\PropertyGridInternal\MergePropertyDescriptor.cs (12)
439if (items != null) { 440return items.Length; 475if (items == null) return; 477Array.Copy(items, 0, array, index, items.Length); 481if (items != null) { 482return items.GetEnumerator(); 500if (items.Length != newCollection.Count) { 508if (((newItems[i] == null) != (items[i] == null)) || 509(items[i] != null && !items[i].Equals(newItems[i]))){ 523collection.CopyTo(items, 0);