1 implementation of Unwrap
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\ListAdapter.cs (1)
62
public IList
Unwrap
() => _list;
1 reference to Unwrap
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\AdapterHelpers.cs (1)
22
internal static IList Unwrap<T>(this IList<T> list) => list is IWrapper<IList> wrapper ? wrapper.
Unwrap
() : (IList)list;