Files
2026-02-21 16:45:37 +08:00

14 lines
311 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
namespace UIWidgets
{
public interface IObservableList<T> : IList<T>, IObservable, ICollectionChanged, ICollectionItemChanged, IDisposable, IEnumerable, ICollection<T>, IEnumerable<T>
{
void BeginUpdate();
void EndUpdate();
}
}