mirror of
http://git.xinwangdao.com/cnnc-embedded-parts-detect/detect.git
synced 2025-06-24 21:44:12 +08:00
11 lines
256 B
C#
11 lines
256 B
C#
![]() |
using System.Reflection;
|
|||
|
using System.Runtime.Loader;
|
|||
|
|
|||
|
namespace WebViewControl {
|
|||
|
|
|||
|
internal static class AssemblyLoader {
|
|||
|
|
|||
|
internal static Assembly LoadAssembly(string path) => AssemblyLoadContext.Default.LoadFromAssemblyPath(path);
|
|||
|
|
|||
|
}
|
|||
|
}
|