4 references to _customColors
System.Windows.Forms (4)
System\Windows\Forms\Dialogs\CommonDialogs\ColorDialog.cs (4)
77
int[] result = new int[
_customColors
.Length];
78
MemoryMarshal.Cast<COLORREF, int>(
_customColors
).CopyTo(result);
83
Span<COLORREF> customColors =
_customColors
;
178
fixed (COLORREF* customColors =
_customColors
)