Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Toub <stoub@microsoft.com>2019-04-10 22:47:15 +0300
committerdotnet-bot <dotnet-bot@microsoft.com>2019-04-22 19:32:38 +0300
commit3418f9c1f865162faacfabf1b6482aa638748315 (patch)
tree11678ddf54f83e3c461052a1ed9ce00758a49d43 /netcore/System.Private.CoreLib/shared/System/ResolveEventHandler.cs
parent1e64bf5c1ccae45d06bceefaa57ee3eb8adaa783 (diff)
Nullable: System (most of it) (dotnet/coreclr#23774)
* Nullable: shared\System (most of it) And some other things it touches. * Nullable: src\System (most of it) * Address PR feedback Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
Diffstat (limited to 'netcore/System.Private.CoreLib/shared/System/ResolveEventHandler.cs')
-rw-r--r--netcore/System.Private.CoreLib/shared/System/ResolveEventHandler.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/netcore/System.Private.CoreLib/shared/System/ResolveEventHandler.cs b/netcore/System.Private.CoreLib/shared/System/ResolveEventHandler.cs
index cb9af5de66c..829b146993a 100644
--- a/netcore/System.Private.CoreLib/shared/System/ResolveEventHandler.cs
+++ b/netcore/System.Private.CoreLib/shared/System/ResolveEventHandler.cs
@@ -2,9 +2,10 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
+#nullable enable
using System.Reflection;
namespace System
{
- public delegate Assembly ResolveEventHandler(object sender, ResolveEventArgs args);
+ public delegate Assembly ResolveEventHandler(object? sender, ResolveEventArgs args);
}