Browse Source

Fix IPerspexList.Count.

pull/278/head
Steven Kirk 11 years ago
parent
commit
21a52a4659
  1. 5
      src/Perspex.Base/Collections/IPerspexList.cs

5
src/Perspex.Base/Collections/IPerspexList.cs

@ -11,6 +11,11 @@ namespace Perspex.Collections
/// <typeparam name="T">The type of the items in the list.</typeparam>
public interface IPerspexList<T> : IList<T>, IPerspexReadOnlyList<T>
{
/// <summary>
/// Gets the number of items in the list.
/// </summary>
new int Count { get; }
/// <summary>
/// Adds multiple items to the collection.
/// </summary>

Loading…
Cancel
Save