1.1 --- a/Collections/ListSet.cs Sat Jun 08 17:15:09 2013 +0000
1.2 +++ b/Collections/ListSet.cs Sun Jun 09 16:08:59 2013 +0000
1.3 @@ -4,7 +4,7 @@
1.4 License, v. 2.0. If a copy of the MPL was not distributed with this
1.5 file, You can obtain one at http://mozilla.org/MPL/2.0/.
1.6
1.7 - Copyright (C) 2009-2010 Michael Möller <mmoeller@openhardwaremonitor.org>
1.8 + Copyright (C) 2009-2013 Michael Möller <mmoeller@openhardwaremonitor.org>
1.9
1.10 */
1.11
1.12 @@ -48,5 +48,11 @@
1.13 IEnumerator IEnumerable.GetEnumerator() {
1.14 return list.GetEnumerator();
1.15 }
1.16 +
1.17 + public int Count {
1.18 + get {
1.19 + return list.Count;
1.20 + }
1.21 + }
1.22 }
1.23 }