1 reference to 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);