New test.
[mono.git] / mcs / class / corlib / System.Collections.ObjectModel / ReadOnlyCollection.cs
index 318d25c60f51b9e9866ffe95594a3b415c3b911f..1334716d683a1aebb6af86438b19746966281807 100644 (file)
@@ -106,6 +106,10 @@ namespace System.Collections.ObjectModel
                        get { return list.Count; }
                }
 
+               protected IList<T> Items {
+                       get { return list; }
+               }
+
                public T this [int index] {
                        get { return list [index]; }
                }