1 instantiation of ListAdapter
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\AdapterHelpers.cs (1)
34internal static IList<T> Adapt<T>(this IList list) => list is IList<T> iList ? iList : new ListAdapter<T>(list);
2 references to ListAdapter
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\AdapterHelpers.cs (2)
26/// a <see cref="ListAdapter&lt;T&gt;"/> when needed. 32/// a new <see cref="ListAdapter&lt;T&gt;"/> wrapping the input IList.