From 4128114c6d7ab4dc6e699f7fca845a598f655fc8 Mon Sep 17 00:00:00 2001 From: Sebastien Pouliot Date: Tue, 19 May 2015 18:12:17 -0400 Subject: [PATCH] Make NotImplementedException partial to allow XI to add an helper method --- .../referencesource/mscorlib/system/notimplementedexception.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mcs/class/referencesource/mscorlib/system/notimplementedexception.cs b/mcs/class/referencesource/mscorlib/system/notimplementedexception.cs index 1f8587b9ee7..a67cac3aeee 100644 --- a/mcs/class/referencesource/mscorlib/system/notimplementedexception.cs +++ b/mcs/class/referencesource/mscorlib/system/notimplementedexception.cs @@ -21,7 +21,7 @@ namespace System { [System.Runtime.InteropServices.ComVisible(true)] [Serializable] - public class NotImplementedException : SystemException + public partial class NotImplementedException : SystemException { public NotImplementedException() : base(Environment.GetResourceString("Arg_NotImplementedException")) { -- 2.25.1