From b1cb790ce153a351b66bc63cdb7f11346d7c85d8 Mon Sep 17 00:00:00 2001 From: Mira <56395159+TheXorog@users.noreply.github.com> Date: Mon, 3 Oct 2022 13:03:22 +0200 Subject: [PATCH] Forgor --- Entities/ObservableList.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Entities/ObservableList.cs b/Entities/ObservableList.cs index 27d9b04..b874d1c 100644 --- a/Entities/ObservableList.cs +++ b/Entities/ObservableList.cs @@ -8,7 +8,7 @@ public class ObservableList : IList public event EventHandler>? 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;