2016-06-17 13:10:18 +03:00
|
|
|
|
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Specialized;
|
|
|
|
|
|
|
|
namespace Xamarin.Forms
|
|
|
|
{
|
|
|
|
public interface IListProxy : IList
|
|
|
|
{
|
|
|
|
event NotifyCollectionChangedEventHandler CollectionChanged;
|
|
|
|
IEnumerable ProxiedEnumerable { get; }
|
2017-11-24 15:46:51 +03:00
|
|
|
bool TryGetValue(int index, out object value);
|
2016-06-17 13:10:18 +03:00
|
|
|
}
|
|
|
|
}
|