From 358fc73a45dc774d06ee97f9827ecb24ebd577ca Mon Sep 17 00:00:00 2001 From: Santiago Fernandez Madero Date: Fri, 27 Sep 2019 16:23:20 -0700 Subject: [PATCH] Make ResolveEventArgs.Name not nullable (dotnet/corefx#41415) Commit migrated from https://github.com/dotnet/corefx/commit/7e9a177824cbefaee8985a9b517ebb0ea2e17a81 --- src/libraries/System.Runtime/ref/System.Runtime.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libraries/System.Runtime/ref/System.Runtime.cs b/src/libraries/System.Runtime/ref/System.Runtime.cs index 7dfc7fa..e36732f 100644 --- a/src/libraries/System.Runtime/ref/System.Runtime.cs +++ b/src/libraries/System.Runtime/ref/System.Runtime.cs @@ -2074,9 +2074,9 @@ namespace System } public partial class ResolveEventArgs : System.EventArgs { - public ResolveEventArgs(string? name) { } - public ResolveEventArgs(string? name, System.Reflection.Assembly? requestingAssembly) { } - public string? Name { get { throw null; } } + public ResolveEventArgs(string name) { } + public ResolveEventArgs(string name, System.Reflection.Assembly? requestingAssembly) { } + public string Name { get { throw null; } } public System.Reflection.Assembly? RequestingAssembly { get { throw null; } } } public ref partial struct RuntimeArgumentHandle -- 2.7.4