1 instantiation of ListAdapter
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\AdapterHelpers.cs (1)
34
internal 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
<T>"/> when needed.
32
/// a new <see cref="
ListAdapter
<T>"/> wrapping the input IList.