FilteredObservableCollection<T>(IList<T>) Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of FilteredObservableCollection<T>.
public:
FilteredObservableCollection(System::Collections::Generic::IList<T> ^ underlyingList);
public FilteredObservableCollection (System.Collections.Generic.IList<T> underlyingList);
new Microsoft.VisualStudio.Language.Intellisense.FilteredObservableCollection<'T> : System.Collections.Generic.IList<'T> -> Microsoft.VisualStudio.Language.Intellisense.FilteredObservableCollection<'T>
Public Sub New (underlyingList As IList(Of T))
Parameters
- underlyingList
- IList<T>
The underlying collection.
Exceptions
underlyingList
is null.
underlyingList
does not implement IList and/or INotifyCollectionChanged.