6

我有一个非常奇怪的问题。我在 dll 中定义了一个接口,如下所示:

public interface IKreator2
{
    string Name { get; set; }
    string Description { get; set; }

    INotifyPropertyChanged Settings { get; set; }

    InfiniRenderJob Job { get; set; }
    UserControl UI { get; set; }

    void Init();
    //void OnClose();
}

如果我在我的 WPF 应用程序中链接到此 dll,调试器会在加载时崩溃(内部错误:调试器中的未处理异常::HandleIPCEvent,ID=0x246)。如果我使用“调试非托管代码”调试应用程序,则会收到以下错误:

  • InfiniRender.Host.exe 中 0x76977945 (KernelBase.dll) 处的第一次机会异常:Microsoft C++ 异常:内存位置 0x0029c5b8 处的 EETypeLoadException。
  • InfiniRender.Host.exe 中 0x76977945 (KernelBase.dll) 的第一次机会异常:Microsoft C++ 异常:内存位置 0x00000000 处的 [rethrow]。
  • InfiniRender.Host.exe 中第一次出现 ype 'System.TypeLoadException' 异常
  • InfiniRender.Host.exe 中发生了“System.TypeLoadException”类型的未处理异常附加信息:Nicht abstrakte Nicht-.cctor-Methode in einer Schnittstelle。

目前我完全不知道发生了什么。甚至没有实现接口,也没有类使用它。如果我将方法“Init”注释掉,一切都会按预期工作。有任何想法吗??

[编辑] 这是 Interface init 方法的 MSIL:

.method public hidebysig newslot virtual 
      instance void  Init() cil managed
{
// Code size       96 (0x60)
.maxstack  3
.locals init ([0] class [mscorlib]System.Exception CS$0$0__ex)
IL_0000:  ldsfld     class [NLog]NLog.Logger '<>z__LoggingImplementationDetails'::l14
IL_0005:  callvirt   instance bool [NLog]NLog.Logger::get_IsTraceEnabled()
IL_000a:  brfalse.s  IL_001b

IL_000c:  ldsfld     class [NLog]NLog.Logger '<>z__LoggingImplementationDetails'::l14
IL_0011:  ldstr      "Entering: InfiniRender.IKreator2.Init()"
IL_0016:  call       instance void [NLog]NLog.Logger::Trace(string)
.try
{
  IL_001b:  newobj     instance void [mscorlib]System.NotSupportedException::.ctor()
  IL_0020:  throw

  IL_0021:  ldsfld     class [NLog]NLog.Logger '<>z__LoggingImplementationDetails'::l14
  IL_0026:  callvirt   instance bool [NLog]NLog.Logger::get_IsTraceEnabled()
  IL_002b:  brfalse.s  IL_003c

  IL_002d:  ldsfld     class [NLog]NLog.Logger '<>z__LoggingImplementationDetails'::l14
  IL_0032:  ldstr      "Leaving: InfiniRender.IKreator2.Init()"
  IL_0037:  call       instance void [NLog]NLog.Logger::Trace(string)
  IL_003c:  leave.s    IL_005f

}  // end .try
catch [mscorlib]System.Exception 
{
  IL_003e:  ldsfld     class [NLog]NLog.Logger '<>z__LoggingImplementationDetails'::l14
  IL_0043:  callvirt   instance bool [NLog]NLog.Logger::get_IsWarnEnabled()
  IL_0048:  brfalse.s  IL_005d

  IL_004a:  stloc.0
  IL_004b:  ldsfld     class [NLog]NLog.Logger '<>z__LoggingImplementationDetails'::l14
  IL_0050:  ldstr      "An exception occurred:\n{0}"
  IL_0055:  ldloc.0
  IL_0056:  call       instance void [NLog]NLog.Logger::Warn(string,
                                                             object)
  IL_005b:  rethrow
  IL_005d:  leave.s    IL_005f

}  // end handler
IL_005f:  ret
} // end of method IKreator2::Init

在我看来,NLog 是罪魁祸首?直到今天,NLog 才出现任何问题......

4

1 回答 1

2

所以,这里的罪魁祸首是“Postsharp.Diagnostics.Toolkit”,它在接口方法声明中添加了代码,导致调试器混乱。

感谢所有帮助过的人!

于 2012-07-20T14:24:44.697 回答