2 writes to _array
System.Drawing.Common (2)
System\Drawing\Printing\PrinterSettings.PaperSourceCollection.cs (2)
20_array = array; 53_array = newArray;
7 references to _array
System.Drawing.Common (7)
System\Drawing\Printing\PrinterSettings.PaperSourceCollection.cs (7)
26public int Count => _array.Length; 31public virtual PaperSource this[int index] => _array[index]; 33public IEnumerator GetEnumerator() => new ArrayEnumerator(_array, Count); 41void ICollection.CopyTo(Array array, int index) => Array.Copy(_array, index, array, 0, _array.Length); 43public void CopyTo(PaperSource[] paperSources, int index) => Array.Copy(_array, index, paperSources, 0, _array.Length);