* LockRecursionException.cs: Updated to 4.0 changes. svn path=/trunk/mcs/; revision=135853
@@ -1,3 +1,7 @@
+2009-06-10 Marek Safar <[email protected]>
+
+ * LockRecursionException.cs: Updated to 4.0 changes.
2009-01-18 Marek Safar <[email protected]>
* ReaderWriterLockSlim.cs: Implemented all properties.
@@ -24,6 +24,14 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
+#if NET_4_0
+using System;
+using System.Runtime.CompilerServices;
+[assembly:TypeForwardedTo (typeof(System.Threading.LockRecursionException))]
+#else
using System;
using System.Runtime.Serialization;
@@ -54,3 +62,5 @@ namespace System.Threading
}
+#endif