Fix pragma warning restore (dotnet/coreclr#26389)
[mono-project.git] / netcore / System.Private.CoreLib / shared / System / AssemblyLoadEventArgs.cs
blobd7e5249693305ab4895dae7bb90034e17ad644d1
1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
5 using System.Reflection;
7 namespace System
9 public class AssemblyLoadEventArgs : EventArgs
11 public AssemblyLoadEventArgs(Assembly loadedAssembly)
13 LoadedAssembly = loadedAssembly;
16 public Assembly LoadedAssembly { get; }