Files
MicrosoftIris/UIX/Microsoft/Iris/Debug/Data/IObservableCollection.cs
T

9 lines
203 B
C#

using System.Collections.Generic;
using System.Collections.Specialized;
namespace Microsoft.Iris.Debug.Data;
public interface IObservableCollection<T> : ICollection<T>, INotifyCollectionChanged
{
}