From 7dbf35b6f4961299d199fabc009e114bff7800f0 Mon Sep 17 00:00:00 2001 From: Marek Safar Date: Tue, 12 Feb 2019 00:38:55 +0100 Subject: [PATCH] Make Module partial to allow additional changed for Mono --- src/System.Private.CoreLib/shared/System/Reflection/Module.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/System.Private.CoreLib/shared/System/Reflection/Module.cs b/src/System.Private.CoreLib/shared/System/Reflection/Module.cs index 934ea75..8042160 100644 --- a/src/System.Private.CoreLib/shared/System/Reflection/Module.cs +++ b/src/System.Private.CoreLib/shared/System/Reflection/Module.cs @@ -8,7 +8,7 @@ using System.Runtime.Serialization; namespace System.Reflection { - public abstract class Module : ICustomAttributeProvider, ISerializable + public abstract partial class Module : ICustomAttributeProvider, ISerializable { protected Module() { } -- 2.7.4