跳转到内容
彼岸论坛
欢迎抵达彼岸 彼岸花开 此处谁在 -彼岸论坛

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


小天管理

已推荐帖子

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
意见的链接
分享到其他网站

加入讨论

您现在可以发表并稍后注册. 如果您是会员,请现在登录来参与讨论.

游客
回复主题...

×   粘贴为富文本.   粘贴为纯文本来代替

  只允许使用75个表情符号.

×   您的链接已自动嵌入.   显示为链接来代替

×   您之前的内容已恢复.   清除编辑器

×   您无法直接粘贴图片.要从网址上传或插入图片.

  • 游客注册

    游客注册

  • 会员

  • 最新的状态更新

    没有最新的状态更新
  • 最近查看

    • 没有会员查看此页面.
×
×
  • 创建新的...