C# .NET framework 4 程序集加载调试 bug

unregister · 2024-9-20 08:15:06 · 90 次点击
static class Program
{
  [STAThread]
static void Main(){
  try{
    AppDomain currentDomain = AppDomain.CurrentDomain;
    currentDomain.AssemblyResolve += new ResolveEventHandler(AssembliesHandler);
    Application.EnableVisualStyles();
    Application.SetCompatibleTextRenderingDefault(false);
    Application.Run(new MainForm())
  }catch(Exception ex){
   
  }
}
static Assembly AssembliesHandler(object source,ResolveEventArgs e){
  // 应用程序集会加载一些 resouce.dll ,例如
  //Microsoft.ApplicationBlocks.ExceptionManagement.resource.dll,Employee.resource.dll
  string assemblyName = new AssemblyName(e.Name).Name +".dll";
  // 但是指定路径下的路径只有 不带 resources 的 dll
  // Microsoft.ApplicationBlocks.ExceptionManagement.dll,Employee.dll
  string librariesPath = @"C:\Users\ddl\"
  return Assembly.LoadForm(assenblyName+librariesPath)
}
}
就感觉挺奇怪的这些 resource.dll 是哪里来的,问了 GPT 说是 和什么多语言文化有关系,在 main 方法里面 Thread.currentInfo(en-us) 也没什么用
后面在 AssembliesHandler 里面判断如果包含 resources 的话就 return null 跳过,
if(assemblyName.contains(resources.dll) return null;
但是这个会直接触发异常,导致程序一直在重试加载 Microsoft.ApplicationBlocks.ExceptionManagement.resource.dll,Employee.resource.dll 。就是 return null 会触发异常,应该换一个什么比较好?
麻烦大神们帮忙看一下
visual studio 2019 professional
举报· 90 次点击
登录 注册 站外分享
3 条回复  
raviscioniemeche 小成 2024-9-20 11:04:00
应该就是楼上说的依赖的 dll
ming159 小成 2024-9-20 08:32:00
1.  try{...} catch(Exception ex){
// 这里 把 ex.Message, ex.StackTrace 打印出来,或者断点,看一下详细信息
}

2. 我猜,大概率是这一行报错了(路径对应的文件没有造成的): Assembly.LoadForm(assenblyName+librariesPath)
klo424 小成 2024-9-20 08:27:34
很明显是资源文件,也是你程序运行的依赖项,你把依赖项去掉当然会报异常,就像你生产环境不安装.NET Framework 运行程序会报错是一个道理。所以,不可能去掉的。
返回顶部