From 96f442b638665454efcc1bc62f46a0817137de85 Mon Sep 17 00:00:00 2001 From: Rich Lander Date: Sun, 8 Jul 2018 14:56:41 -0700 Subject: [PATCH] Correct AssemblyLoadContext comment (dotnet/coreclr#18809) Commit migrated from https://github.com/dotnet/coreclr/commit/13a7e7044b475caac8219f9eb6d34f6fd892e970 --- .../src/System/Runtime/Loader/AssemblyLoadContext.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Loader/AssemblyLoadContext.cs b/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Loader/AssemblyLoadContext.cs index 7bc321a..addd8f8 100644 --- a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Loader/AssemblyLoadContext.cs +++ b/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Loader/AssemblyLoadContext.cs @@ -69,8 +69,8 @@ namespace System.Runtime.Loader return AppDomain.CurrentDomain.GetAssemblies(false); } - // These are helpers that can be used by AssemblyLoadContext derivations. - // They are used to load assemblies in DefaultContext. + // These methods load assemblies into the current AssemblyLoadContext + // They may be used in the implementation of an AssemblyLoadContext derivation public Assembly LoadFromAssemblyPath(string assemblyPath) { if (assemblyPath == null) -- 2.7.4