Browse Source

Make IReadOnlyPerspexList covariant.

pull/16/head
Steven Kirk 12 years ago
parent
commit
057d10823c
  1. 2
      Perspex.Base/Collections/IReadOnlyPerspexList.cs

2
Perspex.Base/Collections/IReadOnlyPerspexList.cs

@ -10,7 +10,7 @@ namespace Perspex.Collections
using System.Collections.Specialized;
using System.ComponentModel;
public interface IReadOnlyPerspexList<T> : IReadOnlyList<T>, INotifyCollectionChanged, INotifyPropertyChanged
public interface IReadOnlyPerspexList<out T> : IReadOnlyList<T>, INotifyCollectionChanged, INotifyPropertyChanged
{
}
}
Loading…
Cancel
Save