未处理System.IO.FileLoadException

下面这条警告我应该要怎么处理呢?砍腿加餐

系统提示:

未处理System.IO.FileLoadException
  FileName=SuperMap.Data.dll
  FusionLog=""
  HResult=-2147024769
  Message=未能加载由“SuperMap.Data.dll”导入的过程。
  Source=iObjects3DDemo
  StackTrace:
       在 ObjectsRealspace1.FrmMain..ctor()
       在 ObjectsRealspace1.Program.Main() 位置 E:\杨鸿伟\03-实验程序\iObjects3DDemo\Program.cs:行号 20
       在 System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args)
       在 System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
       在 Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
       在 System.Threading.ThreadHelper.ThreadStart_Context(Object state)
       在 System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
       在 System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
       在 System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
       在 System.Threading.ThreadHelper.ThreadStart()
  InnerException: 

 

 

就是这个方法可能或出现异常导致程序崩溃,因此你需要进行异常处理,详细的参考异常处理的知识。

我也遇到了这个问题,请问博主解决了吗