3 writes to s_formatList
System.Windows.Forms (3)
System\Windows\Forms\OLE\DataFormats.cs (3)
259s_formatList = newList; 272s_formatList = 297s_formatList ??= [];
16 references to s_formatList
System.Windows.Forms (16)
System\Windows\Forms\OLE\DataFormats.cs (16)
167if (s_formatList[n].Name.Equals(format)) 169return s_formatList[n]; 175if (string.Equals(s_formatList[n].Name, format, StringComparison.OrdinalIgnoreCase)) 177return s_formatList[n]; 189s_formatList[s_formatCount] = new Format(format, (int)formatId); 190return s_formatList[s_formatCount++]; 212if (s_formatList[n].Id == id) 214return s_formatList[n]; 238s_formatList[s_formatCount] = new Format(name, id); 239return s_formatList[s_formatCount++]; 246[MemberNotNull(nameof(s_formatList))] 249if (s_formatList is null || s_formatList.Length <= s_formatCount + size) 256newList[n] = s_formatList![n]; 267[MemberNotNull(nameof(s_formatList))] 293s_formatCount = s_formatList.Length;