2 writes to formatList
System.Windows.Forms (2)
winforms\Managed\System\WinForms\DataFormats.cs (2)
297formatList = newList; 326formatList = new Format [] {
14 references to formatList
System.Windows.Forms (14)
winforms\Managed\System\WinForms\DataFormats.cs (14)
210if (formatList[n].Name.Equals(format)) 211return formatList[n]; 215if (String.Equals(formatList[n].Name, format, StringComparison.OrdinalIgnoreCase)) 216return formatList[n]; 228formatList[formatCount] = new Format(format, formatId); 229return formatList[formatCount++]; 256if (formatList[n].Id == id) 257return formatList[n]; 276formatList[formatCount] = new Format(s.ToString(), id); 278return formatList[formatCount++]; 289if (null == formatList || formatList.Length <= formatCount + size) { 295newList[n] = formatList[n]; 346formatCount = formatList.Length;