This commit is contained in:
Mira 2022-10-03 13:03:22 +02:00
parent 91659e56ba
commit b1cb790ce1
Signed by untrusted user who does not match committer: Xorog
GPG key ID: 983798ED9C3E7C36

View file

@ -8,7 +8,7 @@ public class ObservableList<T> : IList<T>
public event EventHandler<ObservableListUpdate<T>>? ItemsChanged; public event EventHandler<ObservableListUpdate<T>>? ItemsChanged;
public T this[int index] { get => throw new NotImplementedException(); set => throw new NotImplementedException(); } public T this[int index] { get => _items[index]; set { _items[index] = value; } }
public int Count => _items.Count; public int Count => _items.Count;