From 47c6539dc73a23bf167e5eaadce475475c512f44 Mon Sep 17 00:00:00 2001 From: Egor Bogatov Date: Tue, 16 Apr 2019 02:44:04 +0300 Subject: [PATCH] Add "partial" to MarshalAsAttribute (#24014) --- .../shared/System/Runtime/InteropServices/MarshalAsAttribute.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/System.Private.CoreLib/shared/System/Runtime/InteropServices/MarshalAsAttribute.cs b/src/System.Private.CoreLib/shared/System/Runtime/InteropServices/MarshalAsAttribute.cs index 4a64050..816a462 100644 --- a/src/System.Private.CoreLib/shared/System/Runtime/InteropServices/MarshalAsAttribute.cs +++ b/src/System.Private.CoreLib/shared/System/Runtime/InteropServices/MarshalAsAttribute.cs @@ -5,7 +5,7 @@ namespace System.Runtime.InteropServices { [AttributeUsage(AttributeTargets.Parameter | AttributeTargets.Field | AttributeTargets.ReturnValue, Inherited = false)] - public sealed class MarshalAsAttribute : Attribute + public sealed partial class MarshalAsAttribute : Attribute { public MarshalAsAttribute(UnmanagedType unmanagedType) { -- 2.7.4