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