diff -r 19848d079a33 -r d1f25b504845 Collections/ListSet.cs --- a/Collections/ListSet.cs Sat Jun 08 17:15:09 2013 +0000 +++ b/Collections/ListSet.cs Sun Jun 09 16:08:59 2013 +0000 @@ -4,7 +4,7 @@ License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. - Copyright (C) 2009-2010 Michael Möller + Copyright (C) 2009-2013 Michael Möller */ @@ -48,5 +48,11 @@ IEnumerator IEnumerable.GetEnumerator() { return list.GetEnumerator(); } + + public int Count { + get { + return list.Count; + } + } } }