using System.Collections; using System.Collections.Specialized; namespace Xamarin.Forms { public interface IListProxy : IList { event NotifyCollectionChangedEventHandler CollectionChanged; IEnumerable ProxiedEnumerable { get; } bool TryGetValue(int index, out object value); } }