这个异常是什么?
我尝试在 mac 上使用 mono 运行 winaap。但我遇到了这个异常。 为什么会发生这个异常?
未处理的异常:System.TypeInitializationException:System.Windows.Forms.Form 的类型初始值设定项引发异常 ---> System.Reflection.TargetInvocationException :调用目标已引发异常。 ---> System.TypeInitializationException:System.Drawing.GDIPlus 的类型初始值设定项引发异常 ---> System.DllNotFoundException:/Library/Frameworks/Mono.framework/Versions/1.2.6/lib/libgdiplus.dylib位于(包装器托管到本机)System.Drawing.GDIPlus:GdiplusStartup(ulong&,System.Drawing.GdiplusStartupInput& ;,System.Drawing.GdiplusStartupOutput&) at System.Drawing.GDIPlus..cctor () [0x00000] --- 内部异常堆栈跟踪结束 --- 。 。 .
i try to run a winaap on mac with mono.but i got this exception.
why this exception happend?
Unhandled Exception: System.TypeInitializationException: An exception was thrown by the type initializer for System.Windows.Forms.Form ---> System.Reflection.TargetInvocationException : Exception has been thrown by the target of an invocation. ---> System.TypeInitializationException: An exception was thrown by the type initializer for System.Drawing.GDIPlus
---> System.DllNotFoundException: /Library/Frameworks/Mono.framework/ Versions/1.2.6/lib/libgdiplus.dylib at (wrapper managed-to-native) System.Drawing.GDIPlus:GdiplusStartup (ulong &,System .Drawing.GdiplusStartupInput&,System.Drawing.GdiplusStartupOutput&) at System.Drawing.GDIPlus..cctor () [0x00000] --- End of inner exception stack trace --- . . .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最终,您将收到
DllNotFoundException
。确保您已正确安装 Mono 框架。加载 GDI+ 子系统的库之一时似乎出现问题。
Ultimately, you're getting a
DllNotFoundException
.Make sure that you've correctly installed the Mono Framework. It looks like there's a problem loading one of the libraries for the GDI+ subsystem.