Forgor
This commit is contained in:
parent
91659e56ba
commit
b1cb790ce1
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue