Add a few TypeForwardedTo attributes for types moved to System.dll
[mono.git] / mcs / class / WindowsBase / System.Collections.ObjectModel / ReadOnlyObservableCollection.cs
index a074ec07f831c1a3e3188f4645bc8654f2e52e8f..b88daa26ded17802ee130bafb906109d7692b4f3 100644 (file)
 //     Brian O'Keefe (zer0keefie@gmail.com)
 //
 
+#if NET_4_0
+
+using System.Collections.ObjectModel;
+using System.Runtime.CompilerServices;
+[assembly:TypeForwardedTo (typeof (ReadOnlyObservableCollection<>))]
+
+#else
+
 using System.Collections.Specialized;
 using System.ComponentModel;
 
@@ -79,3 +87,4 @@ namespace System.Collections.ObjectModel {
        }
 
 }
+#endif