From 21a52a46594cdcadec7775e8a812dc32dff497f1 Mon Sep 17 00:00:00 2001 From: Steven Kirk Date: Thu, 8 Oct 2015 17:57:07 +0200 Subject: [PATCH] Fix IPerspexList.Count. --- src/Perspex.Base/Collections/IPerspexList.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Perspex.Base/Collections/IPerspexList.cs b/src/Perspex.Base/Collections/IPerspexList.cs index 90278a6044..c680affdc9 100644 --- a/src/Perspex.Base/Collections/IPerspexList.cs +++ b/src/Perspex.Base/Collections/IPerspexList.cs @@ -11,6 +11,11 @@ namespace Perspex.Collections /// The type of the items in the list. public interface IPerspexList : IList, IPerspexReadOnlyList { + /// + /// Gets the number of items in the list. + /// + new int Count { get; } + /// /// Adds multiple items to the collection. ///