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
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
https://www.v2ex.com/t/1074227
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.