2 writes to _array
System.Drawing.Common (2)
System\Drawing\Printing\PrinterSettings.PrinterResolutionCollection.cs (2)
18
public PrinterResolutionCollection(PrinterResolution[] array) =>
_array
= array;
50
_array
= newArray;
7 references to _array
System.Drawing.Common (7)
System\Drawing\Printing\PrinterSettings.PrinterResolutionCollection.cs (7)
23
public int Count =>
_array
.Length;
28
public virtual PrinterResolution this[int index] =>
_array
[index];
30
public IEnumerator GetEnumerator() => new ArrayEnumerator(
_array
, Count);
38
void ICollection.CopyTo(Array array, int index) => Array.Copy(
_array
, index, array, 0,
_array
.Length);
40
public void CopyTo(PrinterResolution[] printerResolutions, int index) => Array.Copy(
_array
, index, printerResolutions, 0,
_array
.Length);