[Core] Add ObservableCollectionEx source ctor
This commit is contained in:
Родитель
5a289ff0b8
Коммит
25a6b414b8
|
@ -9,6 +9,15 @@ namespace Xamarin.PropertyEditing
|
|||
internal class ObservableCollectionEx<T>
|
||||
: ObservableCollection<T>
|
||||
{
|
||||
public ObservableCollectionEx()
|
||||
{
|
||||
}
|
||||
|
||||
public ObservableCollectionEx (IEnumerable<T> collection)
|
||||
: base (collection)
|
||||
{
|
||||
}
|
||||
|
||||
public void AddRange (IEnumerable<T> range)
|
||||
{
|
||||
if (range == null)
|
||||
|
|
Загрузка…
Ссылка в новой задаче