Insire / MvvmScarletToolkit

MvvmScarletToolkit is a personal project and framework to speed up the development process of xaml based applications using the viewmodel first approach

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AddRange is available for readonlycollections

Insire opened this issue · comments

AddRange is available for readonlycollections

So, looks like ReadOnlyCollections implement System.Collections.Generic.ICollection<T> and System.Collections.Generic.IList<T> which both have a Add method. However, they both throw NotSupportedExceptions. Idk why they are implemented this way, but this is an issue with the BCL, not this library.