我有两个程序集:
我想在子程序集中调用一个方法,并检索它的返回对象。构造函数不接受任何参数。该方法不接受任何参数,并返回Microsoft.OData.Edm.IEdmModel
到目前为止我已经尝试过的事情:
domain.CreateInstanceAndUnwrap
:AppDomainSetup setup = new AppDomainSetup()
{
ApplicationBase = path
PrivateBinPath = path
};
AppDomain domain = AppDomain.CreateDomain("Child", null, setup);
AssemblyName assemblyName = AssemblyName.GetAssemblyName(assemblyPath);
object instance = domain.CreateInstanceAndUnwrap(assemblyName.FullName, className);
MarshalByRefObject
的类,并使用该类来加载程序集,调用该函数并编组返回类型:AppDomain domain = AppDomain.CreateDomain("Child");
BinaryMarshal marshal = (BinaryMarshal) domain.CreateInstanceAndUnwrap(typeof(BinaryMarshal).Assembly.FullName, typeof(BinaryMarshal).FullName);
IEdmModel model = marshal.LoadEdmModel(path, className, functionName);
//BinaryMarshal.cs:
internal class BinaryMarshal : MarshalByRefObject
{
public IEdmModel LoadEdmModel(string binary, string className, string functionName)
{
Assembly assembly = Assembly.LoadFrom(binary);
Type type = assembly.GetType(className); //returns null because of exception listed below
}
}
在两种情况下,由于以下异常(从Fuslogvw.exe
获取),代码均无法正常工作:
*** Assembly Binder Log Entry (4/29/2019 @ 10:34:48 AM) ***
The operation failed.
Bind result: hr = 0x80070002. The system cannot find the file specified.
Assembly manager loaded from: C:\Windows\Microsoft.NET\Framework64\v4.0.30319\clr.dll
Running under executable C:\develop\parent\out\debug-amd64\Parent.exe
--- A detailed error log follows.
=== Pre-bind state information ===
LOG: DisplayName = System.Runtime, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
(Fully-specified)
LOG: Appbase = file:///C:/develop/parent/out/debug-amd64/
LOG: Initial PrivatePath = NULL
LOG: Dynamic Base = NULL
LOG: Cache Base = NULL
LOG: AppName = Parent.exe
Calling assembly : Child, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null.
===
LOG: This bind starts in LoadFrom load context.
WRN: Native image will not be probed in LoadFrom context. Native image will only be probed in default load context, like with Assembly.Load().
LOG: Using application configuration file: C:\develop\parent\out\debug-amd64\Parent.exe.Config
LOG: Using host configuration file:
LOG: Using machine configuration file from C:\Windows\Microsoft.NET\Framework64\v4.0.30319\config\machine.config.
LOG: Post-policy reference: System.Runtime, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
LOG: GAC Lookup was unsuccessful.
LOG: Attempting download of new URL file:///C:/develop/parent/out/debug-amd64//System.Runtime.DLL.
LOG: Attempting download of new URL file:///C:/develop/parent/out/debug-amd64//System.Runtime/System.Runtime.DLL.
LOG: Attempting download of new URL file:///C:/develop/parent/out/debug-amd64//System.Runtime.EXE.
LOG: Attempting download of new URL file:///C:/develop/parent/out/debug-amd64//System.Runtime/System.Runtime.EXE.
LOG: Attempting download of new URL file:///C:/develop/child/out/debug-amd64/netcoreapp2.0/System.Runtime.DLL.
LOG: Attempting download of new URL file:///C:/develop/child/out/debug-amd64/netcoreapp2.0/System.Runtime/System.Runtime.DLL.
LOG: Attempting download of new URL file:///C:/develop/child/out/debug-amd64/netcoreapp2.0/System.Runtime.EXE.
LOG: Attempting download of new URL file:///C:/develop/child/out/debug-amd64/netcoreapp2.0/System.Runtime/System.Runtime.EXE.
LOG: All probing URLs attempted and failed.
据我所知,它正在尝试加载System.Runtime,该操作失败,因为父应用程序已经加载了不同版本的System.Runtime。
这有可能吗?
答案 0 :(得分:2)
.NET Core和.NET Framework是不同的运行时。尝试将.NET Standard用于公共库,您将可以在.NET Core和.NET Framework中使用它。
答案 1 :(得分:2)
答案很简单:您不能直接从.NET Framework调用.NET Core程序集,反之亦然。 .NET Core与.NET Framework不兼容。
您可以从.NET Framework程序集调用.NET Core的兼容程序集,只要该程序集的目标是使用.NET Standard,最好至少使用NET Standard 2.0即可提供与.NET Core 2.1和2.2运行时的兼容性。
另请参阅.NET Standard的官方文档:https://docs.microsoft.com/en-us/dotnet/standard/net-standard