Make ResolveEventArgs.Name not nullable (dotnet/corefx#41415)
authorSantiago Fernandez Madero <safern@microsoft.com>
Fri, 27 Sep 2019 23:23:20 +0000 (16:23 -0700)
committerGitHub <noreply@github.com>
Fri, 27 Sep 2019 23:23:20 +0000 (16:23 -0700)
Commit migrated from https://github.com/dotnet/corefx/commit/7e9a177824cbefaee8985a9b517ebb0ea2e17a81

src/libraries/System.Runtime/ref/System.Runtime.cs

index 7dfc7fa..e36732f 100644 (file)
@@ -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