Add a few TypeForwardedTo attributes for types moved to System.dll
[mono.git] / mcs / class / WindowsBase / System.Collections.Specialized / NotifyCollectionChangedEventArgs.cs
index 24a05722ac1ab60c345374377eb68c49fe8f1c2a..e913190db3b26269f3d1c73497adb912bed753d5 100644 (file)
 //     Brian O'Keefe (zer0keefie@gmail.com)
 //
 
+#if NET_4_0
+
+using System.Collections.Specialized;
+using System.Runtime.CompilerServices;
+[assembly:TypeForwardedTo (typeof (NotifyCollectionChangedEventArgs))]
+
+#else
+
 namespace System.Collections.Specialized {
        public class NotifyCollectionChangedEventArgs : EventArgs {
                private NotifyCollectionChangedAction action;
@@ -209,3 +217,4 @@ namespace System.Collections.Specialized {
                #endregion
        }
 }
+#endif
\ No newline at end of file